diff --git a/client/battle/BattleInterface.cpp b/client/battle/BattleInterface.cpp index e87745884..3e54a619c 100644 --- a/client/battle/BattleInterface.cpp +++ b/client/battle/BattleInterface.cpp @@ -527,9 +527,9 @@ void BattleInterface::setAnimSpeed(int set) int BattleInterface::getAnimSpeed() const { if(settings["session"]["spectate"].Bool() && !settings["session"]["spectate-battle-speed"].isNull()) - return static_cast(vstd::round(settings["session"]["spectate-battle-speed"].Float() *100)); + return static_cast(vstd::round(settings["session"]["spectate-battle-speed"].Float())); - return static_cast(vstd::round(settings["battle"]["animationSpeed"].Float() *100)); + return static_cast(vstd::round(settings["battle"]["animationSpeed"].Float())); } CPlayerInterface *BattleInterface::getCurrentPlayerInterface() const