Repair land reward task

This commit is contained in:
Olof Larsson 2017-10-11 08:44:48 +02:00
parent 72b7a6a4ac
commit f0bf9aa2ed

View File

@ -188,7 +188,7 @@ public class FactionColl extends Coll<Faction>
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<MPlayer> players = faction.getMPlayers();