Fix Pseudo Rooted for runspeed

This commit is contained in:
Michael Cook (mackal) 2015-06-10 23:52:56 -04:00
parent 8174428189
commit 8dccc8bf90

View File

@ -615,7 +615,7 @@ int Mob::_GetWalkSpeed() const {
}
int Mob::_GetRunSpeed() const {
if (IsRooted() || IsStunned() || IsMezzed())
if (IsRooted() || IsStunned() || IsMezzed() || IsPseudoRooted())
return 0;
int aa_mod = 0;