From 5f1d0a6114a4deaa352b98a73845e25cb9fdd0e2 Mon Sep 17 00:00:00 2001 From: MathuSum Mut Date: Mon, 18 Mar 2019 20:41:51 +0100 Subject: [PATCH] Removed max speed limit --- source/game/game/game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/game/game/game.cpp b/source/game/game/game.cpp index 25d771011..1e7b1cc32 100644 --- a/source/game/game/game.cpp +++ b/source/game/game/game.cpp @@ -8369,7 +8369,7 @@ namespace Game { Lang & lang = Lang::getInstance(); - if (this->speed < Config::getInstance().getInt("FastSpeedLoops", "8")) { + //if (this->speed < Config::getInstance().getInt("FastSpeedLoops", "8")) { if (this->speed == 0) { this->speed = 1; } else { @@ -8381,7 +8381,7 @@ namespace Game { 1) ? lang.getString("Normal") : "x" + intToStr(this->speed))); - } + //} } void Game::decSpeed() {