|
|
|
@ -210,13 +210,7 @@ public class WorldServer {
@@ -210,13 +210,7 @@ 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){ |
|
|
|
|
if(LocalDateTime.now().getHour() == 21 && LocalDateTime.now().getMinute() == 48){ |
|
|
|
|
//daily reboot
|
|
|
|
|
try { |
|
|
|
|
Runtime rt = Runtime.getRuntime(); |
|
|
|
@ -226,6 +220,11 @@ public class WorldServer {
@@ -226,6 +220,11 @@ public class WorldServer {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (LocalDateTime.now().isAfter(nextHeartbeatTime)) { |
|
|
|
|
SERVERHEARTBEAT.tick(); |
|
|
|
|
nextHeartbeatTime = LocalDateTime.now().plusNanos(50000000); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (LocalDateTime.now().isAfter(nextPopulationFileTime)) { |
|
|
|
|
writePopulationFile(); |
|
|
|
|
nextPopulationFileTime = LocalDateTime.now().plusMinutes(1); |
|
|
|
|