mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-12-25 18:48:24 +01:00
fix of my fix
This commit is contained in:
parent
7b7289db4c
commit
d7b2ac97aa
@ -153,13 +153,13 @@ public class SignProtection extends EssentialsSign
|
||||
{
|
||||
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;
|
||||
}
|
||||
}
|
||||
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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user