Core/Movement: Corrected all speed checks

Port From (https://github.com/TrinityCore/TrinityCore/commit/396457e36a78ebd6f2b1c801121880168908134b)
This commit is contained in:
hondacrx
2019-08-31 11:54:00 -04:00
parent 929a5f1f4e
commit 8ee11c7c65
3 changed files with 7 additions and 2 deletions
+1 -1
View File
@@ -66,7 +66,7 @@ namespace Game.Movement
if (!CHECK(path.Length > 1))
return false;
if (!CHECK(velocity > 0.01f))
if (!CHECK(velocity >= 0.01f))
return false;
if (!CHECK(time_perc >= 0.0f && time_perc <= 1.0f))
return false;