2am daily reboot

This commit is contained in:
2024-03-14 19:21:21 -05:00
parent 71687e39c8
commit a8c768931e
+5 -4
View File
@@ -210,6 +210,11 @@ public class WorldServer {
this.isRunning = true;
while (true) {
if (LocalDateTime.now().isAfter(nextHeartbeatTime)) {
SERVERHEARTBEAT.tick();
nextHeartbeatTime = LocalDateTime.now().plusNanos(50000000);
}
LocalDateTime currentTime = LocalDateTime.now();
if(currentTime.getHour() == 2 && currentTime.getMinute() == 0){
//daily reboot
@@ -220,10 +225,6 @@ public class WorldServer {
Logger.info(err.getMessage());
}
}
if (LocalDateTime.now().isAfter(nextHeartbeatTime)) {
SERVERHEARTBEAT.tick();
nextHeartbeatTime = LocalDateTime.now().plusNanos(50000000);
}
if (LocalDateTime.now().isAfter(nextPopulationFileTime)) {
writePopulationFile();