/f unclaim fix

This commit is contained in:
ProSavage
2018-07-22 11:33:53 -05:00
parent c5f06f910a
commit df9506ca9c
2 changed files with 5 additions and 2 deletions

View File

@@ -130,15 +130,17 @@ public class CmdUnclaim extends FCommand {
}
if (targetFaction.getAccess(fme,PermissableAction.TERRITORY) == Access.DENY) {
return false;
}
if (!assertHasFaction()) {
return false;
}
if (targetFaction.getAccess(fme,PermissableAction.TERRITORY) != Access.ALLOW || !assertMinRole(Role.MODERATOR)) {
if (targetFaction.getAccess(fme, PermissableAction.TERRITORY) != Access.ALLOW && !assertMinRole(Role.MODERATOR)) {
return false;
}
@@ -148,6 +150,7 @@ public class CmdUnclaim extends FCommand {
return false;
}
LandUnclaimEvent unclaimEvent = new LandUnclaimEvent(target, targetFaction, fme);
Bukkit.getServer().getPluginManager().callEvent(unclaimEvent);
if (unclaimEvent.isCancelled()) {