12
1

Fix skip entern #298

Zusammengeführt
Lixfel hat 1 Commits von fixSkip nach master 2021-10-29 11:58:39 +02:00 zusammengeführt

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();
}