Browse Source

Early exit for errant mines.

master
MagicBot 2 years ago
parent
commit
43380962cc
  1. 8
      src/engine/objects/Mine.java

8
src/engine/objects/Mine.java

@ -177,9 +177,13 @@ public class Mine extends AbstractGameObject { @@ -177,9 +177,13 @@ public class Mine extends AbstractGameObject {
int nextMineHour = MBServerStatics.MINE_EARLY_WINDOW;;
LocalDateTime nextOpenDate = LocalDateTime.now().withMinute(0).withSecond(0).withNano(0);
// Use the new owners Mine WOO. If errant use Early window for this server.
// If errant use mine stays open.
if (this.owningGuild == null || this.owningGuild.isErrant() == false)
return;
// Use the new owners Mine WOO.
if (this.owningGuild != null || this.owningGuild.isErrant() == false)
nextMineHour = this.owningGuild.getMineTime();
if ((this.openDate.getHour() == 0 || this.openDate.getHour() == 24) &&

Loading…
Cancel
Save