|  |  |  | @ -19,13 +19,15 @@ import engine.net.client.Protocol;@@ -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 {@@ -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 {@@ -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); | 
			
		
	
		
			
				
					|  |  |  |  |     } | 
			
		
	
		
			
				
					|  |  |  |  | 
 | 
			
		
	
		
			
				
					|  |  |  |  |     /** | 
			
		
	
	
		
			
				
					|  |  |  | 
 |