1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-05 06:07:54 +02:00

Merge pull request #24 from eXeC64/master

Fixed bug where players are unable to remove their own chest protection.
This commit is contained in:
snowleo
2011-09-20 05:44:50 -07:00

View File

@@ -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;
}