|
|
@ -473,8 +473,8 @@ namespace MWMechanics
|
|
|
|
void AiWander::onWalkingStatePerFrameActions(const MWWorld::Ptr& actor,
|
|
|
|
void AiWander::onWalkingStatePerFrameActions(const MWWorld::Ptr& actor,
|
|
|
|
float duration, AiWanderStorage& storage, ESM::Position& pos)
|
|
|
|
float duration, AiWanderStorage& storage, ESM::Position& pos)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// Are we there yet?
|
|
|
|
// Is there no destination or are we there yet?
|
|
|
|
if (pathTo(actor, mPathFinder.getPath().back(), duration, DESTINATION_TOLERANCE))
|
|
|
|
if ((!mPathFinder.isPathConstructed()) || pathTo(actor, mPathFinder.getPath().back(), duration, DESTINATION_TOLERANCE))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
stopWalking(actor, storage);
|
|
|
|
stopWalking(actor, storage);
|
|
|
|
storage.setState(Wander_ChooseAction);
|
|
|
|
storage.setState(Wander_ChooseAction);
|
|
|
|