summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Essentials/src/com/earth2me/essentials/signs/SignProtection.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java
index 52848a4f7..0a74129d1 100644
--- a/Essentials/src/com/earth2me/essentials/signs/SignProtection.java
+++ b/Essentials/src/com/earth2me/essentials/signs/SignProtection.java
@@ -153,13 +153,12 @@ public class SignProtection extends EssentialsSign
{
return SignProtectionState.ALLOWED;
}
- else if (line.equalsIgnoreCase(username)|| ChatColor.stripColor(line).equalsIgnoreCase((username)))
+ else if (line.equalsIgnoreCase(username))
{
return SignProtectionState.ALLOWED;
}
}
- String signOwner = sign.getLine(3).substring(2);
- if (signOwner.equalsIgnoreCase(username) || ChatColor.stripColor(signOwner).equalsIgnoreCase((username)))
+ if (ChatColor.stripColor(sign.getLine(3).substring(2)).equalsIgnoreCase(username))
{
return SignProtectionState.OWNER;
}