Merge pull request 'Fix skip entern' (#298) from fixSkip into master
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Reviewed-on: #298 Reviewed-by: YoyoNow <jwsteam@nidido.de>
Dieser Commit ist enthalten in:
Commit
270f850cf1
@ -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();
|
||||
}
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren