Move update path to movement manager so all movement will use paths

This commit is contained in:
KimLS
2018-09-18 23:06:56 -07:00
parent 2224b83ae0
commit f754cb1307
14 changed files with 66 additions and 236 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ void MobMovementManager::SendPositionUpdate(Mob *who, bool send_to_self)
bool MobMovementManager::HeadingEqual(float a, float b)
{
const float eps = 0.001f;
const float eps = 0.0001f;
return abs(a - b) < eps;
}