12
1
Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2021-04-24 20:18:39 +02:00
Ursprung 5c95036830
Commit 8cc92c5ac4
2 geänderte Dateien mit 3 neuen und 5 gelöschten Zeilen

Datei anzeigen

@ -118,12 +118,12 @@ public abstract class Countdown {
return time;
}
void count() {
private void count() {
time--;
show();
}
private void show(){
void show(){
switch (time) {
case 900: case 600: case 300: case 180: case 120:
broadcast("§rNoch §a" + time / 60 + " §rMinuten " + countdownCounting());

Datei anzeigen

@ -52,9 +52,7 @@ public class EnternCountdown extends Countdown {
}
@Override
void count(){
time--;
void show(){
Player player = fightPlayer.getPlayer();
switch (time) {
case 900: case 600: case 300: case 180: case 120: