diff options
author | Harry Jeffery <harry101jeffery@googlemail.com> | 2011-09-20 12:33:42 +0100 |
---|---|---|
committer | Harry Jeffery <harry101jeffery@googlemail.com> | 2011-09-20 12:33:42 +0100 |
commit | fe15bab05f0e8b87f4d89573da1a9fc1f101a121 (patch) | |
tree | 665ecbec434ddeb7b95f436d3f0b9586dc151910 | |
parent | ac1f2badc7680900ed9e42928d6df30dd55cc99b (diff) | |
download | Essentials-fe15bab05f0e8b87f4d89573da1a9fc1f101a121.tar Essentials-fe15bab05f0e8b87f4d89573da1a9fc1f101a121.tar.gz Essentials-fe15bab05f0e8b87f4d89573da1a9fc1f101a121.tar.lz Essentials-fe15bab05f0e8b87f4d89573da1a9fc1f101a121.tar.xz Essentials-fe15bab05f0e8b87f4d89573da1a9fc1f101a121.zip |
Fixed bug preventing players from removing their own signs
-rw-r--r-- | Essentials/src/com/earth2me/essentials/signs/SignProtection.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java index 1db607606..b9bbfb90f 100644 --- a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java +++ b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java @@ -183,14 +183,19 @@ public class SignProtection extends EssentialsSign SignProtectionState retstate = SignProtectionState.NOSIGN; for (SignProtectionState state : signs.values()) { - if (state == SignProtectionState.OWNER || state == SignProtectionState.ALLOWED) + + if (state == SignProtectionState.OWNER) { return state; } - if (state == SignProtectionState.NOT_ALLOWED) + if (state == SignProtectionState.ALLOWED) { retstate = state; } + else if (state == SignProtectionState.NOT_ALLOWED && retstate != SignProtectionState.ALLOWED) + { + retstate = state + } } return retstate; } |