diff --git a/src/com/massivecraft/factions/entity/FactionColl.java b/src/com/massivecraft/factions/entity/FactionColl.java index af50ae79..c9d7d240 100644 --- a/src/com/massivecraft/factions/entity/FactionColl.java +++ b/src/com/massivecraft/factions/entity/FactionColl.java @@ -188,7 +188,7 @@ public class FactionColl extends Coll int landCount = faction.getLandCount(); // ... and if the faction isn't peaceful and has land ... - if (faction.getFlag(flagPeaceful) || landCount > 0) continue; + if (landCount == 0 || faction.getFlag(flagPeaceful)) continue; // ... get the faction's members ... List players = faction.getMPlayers();