Core/Movement Fixed minimum speed check (#17555)

This commit is contained in:
Keader
2016-07-10 06:32:14 -03:00
committed by Aokromes
parent c82ecf4976
commit 5eb80cdfde

View File

@@ -206,7 +206,7 @@ bool MoveSplineInitArgs::Validate(Unit* unit) const
return false;\
}
CHECK(path.size() > 1);
CHECK(velocity > 0.1f);
CHECK(velocity > 0.01f);
CHECK(time_perc >= 0.f && time_perc <= 1.f);
//CHECK(_checkPathBounds());
return true;