Browse Source

Early exit for errant mines.

master
MagicBot 2 years ago
parent
commit
48d435f2c1
  1. 2
      src/engine/objects/Mine.java

2
src/engine/objects/Mine.java

@ -179,7 +179,7 @@ public class Mine extends AbstractGameObject { @@ -179,7 +179,7 @@ public class Mine extends AbstractGameObject {
// If errant use mine stays open.
if (this.owningGuild == null || this.owningGuild.isErrant() == false)
if (this.owningGuild == null || this.owningGuild.isErrant() == true)
return;
// Use the new owners Mine WOO.

Loading…
Cancel
Save