Seconds remaining calculated only once.

This commit is contained in:
2023-02-24 09:05:47 -05:00
parent bbbd5f8996
commit 72a610fd0c
2 changed files with 7 additions and 5 deletions
+1 -1
View File
@@ -156,7 +156,7 @@ public enum ZoneManager {
ZoneManager.hotZone = zone;
ZoneManager.hotZoneCycle = 1; // Used with HOTZONE_DURATION from config.
zone.hasBeenHotzone = true;
hotZoneLastUpdate = LocalDateTime.now().atZone(ZoneId.systemDefault()).toInstant();
ZoneManager.hotZoneLastUpdate = LocalDateTime.now().atZone(ZoneId.systemDefault()).toInstant();
}
@@ -19,13 +19,15 @@ import engine.net.client.Protocol;
import java.time.Duration;
import java.time.Instant;
import java.time.LocalDateTime;
import java.time.ZoneId;
public class HotzoneChangeMsg extends ClientNetMsg {
private int zoneType;
private int zoneID;
private Duration endOfCycle;
private int secondsRemaining;
/**
* This is the general purpose constructor.
@@ -36,8 +38,8 @@ public class HotzoneChangeMsg extends ClientNetMsg {
this.zoneID = zoneID;
int hotZoneDuration = Integer.parseInt(ConfigManager.MB_HOTZONE_DURATION.getValue());
endOfCycle = Duration.between(Instant.now(), ZoneManager.hotZoneLastUpdate.plusSeconds(hotZoneDuration * 3600));
Instant currentInstant = LocalDateTime.now().atZone(ZoneId.systemDefault()).toInstant();
secondsRemaining = (int) Duration.between(currentInstant, ZoneManager.hotZoneLastUpdate.plusSeconds(hotZoneDuration * 3600)).getSeconds();
}
@@ -59,7 +61,7 @@ public class HotzoneChangeMsg extends ClientNetMsg {
protected void _serialize(ByteBufferWriter writer) {
writer.putInt(this.zoneType);
writer.putInt(this.zoneID);
writer.putInt((int) endOfCycle.getSeconds());
writer.putInt(secondsRemaining);
}
/**