mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-22 13:09:42 +00:00
Merge remote-tracking branch 'torben/aiwanderpatchpotential'
This commit is contained in:
commit
7927ac818c
1 changed files with 6 additions and 4 deletions
|
@ -92,7 +92,10 @@ bool MWMechanics::AiWander::execute (const MWWorld::Ptr& actor)
|
||||||
mCellX = actor.getCell()->mCell->mData.mX;
|
mCellX = actor.getCell()->mCell->mData.mX;
|
||||||
mCellY = actor.getCell()->mCell->mData.mY;
|
mCellY = actor.getCell()->mCell->mData.mY;
|
||||||
|
|
||||||
if(mDistance && !mPathgrid->mPoints.empty())
|
if(mPathgrid->mPoints.empty())
|
||||||
|
mDistance = 0;
|
||||||
|
|
||||||
|
if(mDistance)
|
||||||
{
|
{
|
||||||
mXCell = 0;
|
mXCell = 0;
|
||||||
mYCell = 0;
|
mYCell = 0;
|
||||||
|
@ -126,10 +129,9 @@ bool MWMechanics::AiWander::execute (const MWWorld::Ptr& actor)
|
||||||
}
|
}
|
||||||
mCurrentNode = mAllowedNodes[index];
|
mCurrentNode = mAllowedNodes[index];
|
||||||
mAllowedNodes.erase(mAllowedNodes.begin() + index);
|
mAllowedNodes.erase(mAllowedNodes.begin() + index);
|
||||||
if(mAllowedNodes.empty())
|
|
||||||
mDistance = 0;
|
|
||||||
}
|
}
|
||||||
else
|
|
||||||
|
if(mAllowedNodes.empty())
|
||||||
mDistance = 0;
|
mDistance = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue