mines open and close

This commit is contained in:
2024-06-11 20:53:33 -05:00
parent 8f68997f3c
commit ef62c2bb39
2 changed files with 13 additions and 14 deletions
+1 -1
View File
@@ -189,7 +189,7 @@ public class Mine extends AbstractGameObject {
Guild mineNatonGuild = mine.getOwningGuild().getNation(); Guild mineNatonGuild = mine.getOwningGuild().getNation();
writer.putLocalDateTime(mineOpenTime); writer.putLocalDateTime(mineOpenTime);
writer.putLocalDateTime(mineOpenTime.plusHours(1)); writer.putLocalDateTime(mineOpenTime.plusMinutes(30));
writer.put(mine.isActive ? (byte) 0x01 : (byte) 0x00); writer.put(mine.isActive ? (byte) 0x01 : (byte) 0x00);
Building mineTower = BuildingManager.getBuilding(mine.buildingID); Building mineTower = BuildingManager.getBuilding(mine.buildingID);
+12 -13
View File
@@ -41,18 +41,8 @@ public class HalfHourlyJobThread implements Runnable {
ArrayList<Mine> mines = Mine.getMines(); ArrayList<Mine> mines = Mine.getMines();
for (Mine mine : mines) { for (Mine mine : mines) {
if (LocalDateTime.now().getHour() == 1400) {
mine.wasClaimed = false;
}
try { try {
// Open Errant Mines
if (mine.getOwningGuild().isEmptyGuild()) {
HalfHourlyJobThread.mineWindowOpen(mine);
continue;
}
// Open Mines owned by nations having their WOO // Open Mines owned by nations having their WOO
// set to the current mine window. // set to the current mine window.
@@ -62,8 +52,9 @@ public class HalfHourlyJobThread implements Runnable {
} }
// Close the mine if it reaches this far // Close the mine if it reaches this far
LocalDateTime openTime = LocalDateTime.now().withHour(mine.openHour).withMinute(mine.openMinute);
mineWindowClose(mine); if(LocalDateTime.now().plusMinutes(1).isAfter(openTime.plusMinutes(30)))
mineWindowClose(mine);
} catch (Exception e) { } catch (Exception e) {
Logger.error("mineID: " + mine.getObjectUUID(), e.toString()); Logger.error("mineID: " + mine.getObjectUUID(), e.toString());
@@ -101,6 +92,10 @@ public class HalfHourlyJobThread implements Runnable {
if (mineBuilding.getRank() > 0) { if (mineBuilding.getRank() > 0) {
mine.setActive(false); mine.setActive(false);
mine.lastClaimer = null; mine.lastClaimer = null;
ChatSystemMsg chatMsg = new ChatSystemMsg(null, mine.guildName + " has defended the mine in " + mine.getParentZone().getParent().getName() + ". The mine is no longer active.");
chatMsg.setMessageType(10);
chatMsg.setChannel(Enum.ChatChannelType.SYSTEM.getChannelID());
DispatchMessage.dispatchMsgToAll(chatMsg);
return true; return true;
} }
@@ -112,6 +107,10 @@ public class HalfHourlyJobThread implements Runnable {
mine.lastClaimer = null; mine.lastClaimer = null;
mine.updateGuildOwner(null); mine.updateGuildOwner(null);
mine.setActive(true); mine.setActive(true);
ChatSystemMsg chatMsg = new ChatSystemMsg(null, mine.getParentZone().getParent().getName() + " Was not claimed, the battle rages on!");
chatMsg.setMessageType(10);
chatMsg.setChannel(Enum.ChatChannelType.SYSTEM.getChannelID());
DispatchMessage.dispatchMsgToAll(chatMsg);
return false; return false;
} }
@@ -163,7 +162,7 @@ public class HalfHourlyJobThread implements Runnable {
} catch (Exception e) { } catch (Exception e) {
Logger.info(e.getMessage() + " for Mine " + mine.getObjectUUID()); Logger.info(e.getMessage() + " for Mine " + mine.getObjectUUID());
} }
if (mine.wasClaimed == true) if (mine.wasClaimed == false)
mine.wasClaimed = false; mine.wasClaimed = false;
} }
} }