1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-17 20:11:21 +02:00

fix of my fix

This commit is contained in:
ementalo
2011-07-22 16:56:41 +01:00
parent 8ef7005e20
commit 5e64fe97de

View File

@@ -153,13 +153,13 @@ public class SignProtection extends EssentialsSign
{ {
return SignProtectionState.ALLOWED; return SignProtectionState.ALLOWED;
} }
else if (line.equalsIgnoreCase(username)|| line.equalsIgnoreCase(ChatColor.stripColor(username))) else if (line.equalsIgnoreCase(username)|| ChatColor.stripColor(line).equalsIgnoreCase((username)))
{ {
return SignProtectionState.ALLOWED; return SignProtectionState.ALLOWED;
} }
} }
String signOwner = sign.getLine(3).substring(2); String signOwner = sign.getLine(3).substring(2);
if (signOwner.equalsIgnoreCase(username) || signOwner.equalsIgnoreCase(ChatColor.stripColor(username))) if (signOwner.equalsIgnoreCase(username) || ChatColor.stripColor(signOwner).equalsIgnoreCase((username)))
{ {
return SignProtectionState.OWNER; return SignProtectionState.OWNER;
} }