12
1

Merge pull request 'Fix skip entern' (#298) from fixSkip into master
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Reviewed-on: #298
Reviewed-by: YoyoNow <jwsteam@nidido.de>
Dieser Commit ist enthalten in:
Lixfel 2021-10-29 11:58:39 +02:00
Commit 270f850cf1

Datei anzeigen

@ -83,9 +83,9 @@ public abstract class Countdown {
}
for(Countdown countdown : currentCountdowns){
countdown.time -= smallestTime;
if(countdown.time <= 1)
if(countdown.time - smallestTime <= 1)
countdown.prepareFinish();
countdown.time -= smallestTime;
countdown.show();
}