SteamWar/FightSystem
Archiviert
13
1

Add always Event recording

Add live playback with option
Dieser Commit ist enthalten in:
yoyosource 2021-02-27 19:42:10 +01:00
Ursprung da217118cf
Commit f0b181bad5
2 geänderte Dateien mit 3 neuen und 2 gelöschten Zeilen

Datei anzeigen

@ -418,6 +418,6 @@ public class Config {
return CheckSchemID != 0; return CheckSchemID != 0;
} }
public static boolean recording(){ public static boolean recording(){
return event() && SpectateSystem; return event();
} }
} }

Datei anzeigen

@ -45,7 +45,8 @@ public class RecordSystem {
return; return;
Bukkit.getScheduler().runTaskTimer(FightSystem.getPlugin(), RecordSystem::checkWorldState, 1, 1); Bukkit.getScheduler().runTaskTimer(FightSystem.getPlugin(), RecordSystem::checkWorldState, 1, 1);
new SpectateConnection(); if (Config.SpectateSystem)
new SpectateConnection();
new FileRecorder(); new FileRecorder();
if(Config.event()) if(Config.event())
teamIds(Config.EventTeamBlueID, Config.EventTeamRedID); teamIds(Config.EventTeamBlueID, Config.EventTeamRedID);