Browse Source

2am daily reboot

lakebane-master
FatBoy-DOTC 8 months ago
parent
commit
678e45ce6b
  1. 9
      src/engine/server/world/WorldServer.java

9
src/engine/server/world/WorldServer.java

@ -196,7 +196,7 @@ public class WorldServer { @@ -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 { @@ -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);

Loading…
Cancel
Save