1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-04 14:45:36 +00:00

Feature #391 Dummy AI package classes

This commit is contained in:
marcin 2012-11-15 22:33:50 +01:00
parent 99ddc63e2c
commit bed0280ba1

View file

@ -41,7 +41,5 @@ int MWMechanics::AiWander::getIdle(int index) const
{ {
if(index < 0 || (uint)index > mIdle.size()) if(index < 0 || (uint)index > mIdle.size())
return -1; return -1;
int temp; return mIdle.at(index);
temp = mIdle.at(index);
return temp;
} }