2am daily reboot

This commit is contained in:
2024-03-14 19:20:25 -05:00
parent 5bfeafe8bf
commit 678e45ce6b
+7 -2
View File
@@ -196,7 +196,7 @@ public class WorldServer {
}
}
private int exec() {
private int exec() throws IOException {
LocalDateTime nextHeartbeatTime = LocalDateTime.now();
LocalDateTime nextPopulationFileTime = LocalDateTime.now();
@@ -210,7 +210,12 @@ public class WorldServer {
this.isRunning = true;
while (true) {
LocalDateTime currentTime = LocalDateTime.now();
if(currentTime.getHour() == 2 && currentTime.getMinute() == 0){
//daily reboot
Runtime rt = Runtime.getRuntime();
rt.exec("./mbrestart.sh");
}
if (LocalDateTime.now().isAfter(nextHeartbeatTime)) {
SERVERHEARTBEAT.tick();
nextHeartbeatTime = LocalDateTime.now().plusNanos(50000000);