Removed max speed limit

This commit is contained in:
MathuSum Mut
2019-03-18 20:41:51 +01:00
committed by GitHub
parent d238833078
commit 5f1d0a6114

View File

@@ -8369,7 +8369,7 @@ namespace Game {
Lang & lang = Lang::getInstance(); Lang & lang = Lang::getInstance();
if (this->speed < Config::getInstance().getInt("FastSpeedLoops", "8")) { //if (this->speed < Config::getInstance().getInt("FastSpeedLoops", "8")) {
if (this->speed == 0) { if (this->speed == 0) {
this->speed = 1; this->speed = 1;
} else { } else {
@@ -8381,7 +8381,7 @@ namespace Game {
1) ? 1) ?
lang.getString("Normal") : "x" + lang.getString("Normal") : "x" +
intToStr(this->speed))); intToStr(this->speed)));
} //}
} }
void Game::decSpeed() { void Game::decSpeed() {