"claimsMustBeConnected" land claim requirement is now ignored for players who have enabled bypass mode

This commit is contained in:
Brettflan 2011-07-24 06:12:01 -05:00
parent bc56ff6651
commit 066415e752
1 changed files with 2 additions and 1 deletions

View File

@ -458,7 +458,7 @@ public class FPlayer {
}
public boolean attemptClaim(boolean notifyFailure) {
// notifyFailure is false if called by auto-claim; not need to notify on every failure for it
// notifyFailure is false if called by auto-claim; no need to notify on every failure for it
// return value is false on failure, true on success
Faction myFaction = getFaction();
@ -505,6 +505,7 @@ public class FPlayer {
if (
Conf.claimsMustBeConnected
&& !Conf.adminBypassPlayers.contains(this.playerName)
&& myFaction.getLandRoundedInWorld(flocation.getWorldName()) > 0
&& !Board.isConnectedLocation(flocation, myFaction)
&& (!Conf.claimsCanBeUnconnectedIfOwnedByOtherFaction || !otherFaction.isNormal())