Reduce some stdout spam

This commit is contained in:
Chris Robinson 2013-04-06 04:46:28 -07:00
parent 99b915e652
commit 1d934e3112
2 changed files with 1 additions and 3 deletions

View file

@ -13,7 +13,7 @@ MWMechanics::AiPackage * MWMechanics::AiWander::clone() const
bool MWMechanics::AiWander::execute (const MWWorld::Ptr& actor)
{
std::cout << "AiWadner completed.\n";
// Return completed
return true;
}

View file

@ -196,8 +196,6 @@ namespace MWScript
MWMechanics::AiWander wanderPackage(range, duration, time, idleList);
MWWorld::Class::get (ptr).getCreatureStats (ptr).getAiSequence().stack(wanderPackage);
std::cout << "AiWander" << std::endl;
}
};