Fix Bug #126
This commit is contained in:
parent
1ee62c2267
commit
8ad2fdf848
@ -741,7 +741,8 @@ public class FactionsPlayerListener implements Listener {
|
||||
me.attemptClaim(me.getAutoClaimFor(), newLocation, true);
|
||||
}
|
||||
FactionsPlugin.instance.logFactionEvent(me.getAutoClaimFor(), FLogType.CHUNK_CLAIMS, me.getName(), CC.GreenB + "CLAIMED", String.valueOf(1), (new FLocation(player.getLocation())).formatXAndZ(","));
|
||||
if (Conf.disableFlightOnFactionClaimChange) CmdFly.disableFlight(me);
|
||||
if (Conf.disableFlightOnFactionClaimChange && FactionsPlugin.getInstance().getConfig().getBoolean("enable-faction-flight")) CmdFly.disableFlight(me);
|
||||
|
||||
} else if (me.isAutoSafeClaimEnabled()) {
|
||||
if (!Permission.MANAGE_SAFE_ZONE.has(player)) {
|
||||
me.setIsAutoSafeClaimEnabled(false);
|
||||
|
@ -972,6 +972,8 @@ public abstract class MemoryFPlayer implements FPlayer {
|
||||
}
|
||||
|
||||
public void setFFlying(boolean fly, boolean damage) {
|
||||
if(FactionsPlugin.getInstance().getConfig().getBoolean("enable-faction-flight"))
|
||||
{
|
||||
Player player = getPlayer();
|
||||
if (player == null) return;
|
||||
|
||||
@ -1003,6 +1005,7 @@ public abstract class MemoryFPlayer implements FPlayer {
|
||||
|
||||
isFlying = fly;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean isInFactionsChest() {
|
||||
return inChest;
|
||||
|
Loading…
Reference in New Issue
Block a user