diff --git a/zone/pathfinder_nav_mesh.cpp b/zone/pathfinder_nav_mesh.cpp index 8b4cfb2f5..88afc0ec2 100644 --- a/zone/pathfinder_nav_mesh.cpp +++ b/zone/pathfinder_nav_mesh.cpp @@ -84,7 +84,7 @@ IPathfinder::IPath PathfinderNavmesh::FindRoute(const glm::vec3 &start, const gl partial = true; auto dist = DistanceSquared(epos, current_location); - if (dist < 10.0f) { + if (dist < 10000.0f) { stuck = true; } }