From 5779a7b223cd107dbc58d5391988ff1afa31262a Mon Sep 17 00:00:00 2001 From: RoboMWM Date: Sat, 23 Apr 2016 20:59:51 -0700 Subject: [PATCH] Make IgnoreMode enum public --- src/me/ryanhamshire/GriefPrevention/GriefPrevention.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java index 98f81b7..1ae5abf 100644 --- a/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java +++ b/src/me/ryanhamshire/GriefPrevention/GriefPrevention.java @@ -2636,7 +2636,7 @@ public class GriefPrevention extends JavaPlugin } } - enum IgnoreMode {None, StandardIgnore, AdminIgnore} + public enum IgnoreMode {None, StandardIgnore, AdminIgnore} private String trustEntryToPlayerName(String entry) { @@ -3457,4 +3457,4 @@ public class GriefPrevention extends JavaPlugin claim.isAdminClaim() && claim.parent != null && GriefPrevention.instance.config_pvp_noCombatInAdminSubdivisions || !claim.isAdminClaim() && GriefPrevention.instance.config_pvp_noCombatInPlayerLandClaims; } -} \ No newline at end of file +}