diff --git a/src/com/massivecraft/factions/FPlayer.java b/src/com/massivecraft/factions/FPlayer.java index 30f84cbd..28de534f 100644 --- a/src/com/massivecraft/factions/FPlayer.java +++ b/src/com/massivecraft/factions/FPlayer.java @@ -84,6 +84,7 @@ public class FPlayer { this.chatMode = ChatMode.PUBLIC; this.role = Role.NORMAL; this.title = ""; + this.autoClaimEnabled = false; if (playerName != null && !playerName.isEmpty()) { SpoutFeatures.updateAppearances(this.getPlayer()); diff --git a/src/com/massivecraft/factions/Factions.java b/src/com/massivecraft/factions/Factions.java index 003e5842..07fad459 100644 --- a/src/com/massivecraft/factions/Factions.java +++ b/src/com/massivecraft/factions/Factions.java @@ -441,6 +441,10 @@ public class Factions extends JavaPlugin { return hasPerm(sender, "factions.peacefulExplosionToggle"); } + public static boolean hasPermViewAnyFactionBalance(CommandSender sender) { + return hasPerm(sender, "factions.viewAnyFactionBalance"); + } + public static boolean isCommandDisabled(CommandSender sender, String command) { return (hasPerm(sender, "factions.commandDisable."+command) && !hasPerm(sender, "factions.commandDisable.none")); }