1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-26 03:27:44 +00:00

fix inaccurate animation lock time for casts

This commit is contained in:
collett 2020-01-14 22:01:11 +09:00
parent fc66254da3
commit 983c772260

View file

@ -826,7 +826,7 @@ float Action::Action::getAnimationLock()
return 0.1f;
}
}
return 0.6f;
return hasCastTime() ? 0.1f : 0.6f;
}
Action::EffectBuilderPtr Action::Action::getEffectbuilder()