mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-18 13:12:50 +00:00
Use default tolerance to drop last point from path
Fixes AiEscort. Before actor tried to reach target with 0 tolerance. Back to logic like it was before 4fe764c3a53 and bbd82a743 commits.
This commit is contained in:
parent
540e93e983
commit
c52db75545
@ -173,7 +173,7 @@ bool MWMechanics::AiPackage::pathTo(const MWWorld::Ptr& actor, const osg::Vec3f&
|
||||
|
||||
const auto pointTolerance = std::min(actor.getClass().getSpeed(actor), DEFAULT_TOLERANCE);
|
||||
|
||||
mPathFinder.update(position, pointTolerance, destTolerance);
|
||||
mPathFinder.update(position, pointTolerance, DEFAULT_TOLERANCE);
|
||||
|
||||
if (isDestReached || mPathFinder.checkPathCompleted()) // if path is finished
|
||||
{
|
||||
|
Loading…
x
Reference in New Issue
Block a user