SteamWar/FightSystem
Archiviert
13
1

Fix countdown replay
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Signed-off-by: Lixfel <agga-games@gmx.de>
Dieser Commit ist enthalten in:
Lixfel 2021-10-24 15:53:57 +02:00
Ursprung 15e425ac65
Commit a5f06e6f7c

Datei anzeigen

@ -100,7 +100,7 @@ public abstract class Countdown {
if(this.sound != null && divisor == 1) if(this.sound != null && divisor == 1)
Fight.playSound(this.sound, 100.0F, 1.0F); Fight.playSound(this.sound, 100.0F, 1.0F);
GlobalRecorder.getInstance().countdown(message, divisor, appendix); GlobalRecorder.getInstance().countdown(message, time / divisor, appendix);
Bukkit.getOnlinePlayers().forEach(p -> sendCountdownMessage(p, message, time / divisor, appendix)); Bukkit.getOnlinePlayers().forEach(p -> sendCountdownMessage(p, message, time / divisor, appendix));
} }