diff --git a/src/com/massivecraft/factions/FPlayer.java b/src/com/massivecraft/factions/FPlayer.java index 5ac1350d..a060e082 100644 --- a/src/com/massivecraft/factions/FPlayer.java +++ b/src/com/massivecraft/factions/FPlayer.java @@ -508,6 +508,12 @@ public class FPlayer { FLocation flocation = new FLocation(this); Faction otherFaction = Board.getFactionAt(flocation); + if (Worldguard.checkForRegions(this.getPlayer().getLocation())) { + // Checks for WorldGuard regions in the chunk attempting to be claimed + sendMessage("This land is protected"); + return false; + } + if (myFaction == otherFaction) { if (notifyFailure) sendMessage("You already own this land.");