diff --git a/src/com/massivecraft/factions/entity/Warp.java b/src/com/massivecraft/factions/entity/Warp.java index 6250d587..3db27f90 100644 --- a/src/com/massivecraft/factions/entity/Warp.java +++ b/src/com/massivecraft/factions/entity/Warp.java @@ -73,8 +73,9 @@ public class Warp extends EntityInternal implements Named public boolean verifyIsValid() { if (this.isValid()) return true; + Faction fac = this.getFaction(); this.detach(); - this.getFaction().msg("Your faction warp %s has been un-set since it is no longer in your territory.", this.getName()); + fac.msg("Your faction warp %s has been un-set since it is no longer in your territory.", this.getName()); return false; }