mirror of
https://github.com/EssentialsX/Essentials.git
synced 2025-01-13 19:52:03 +01:00
Fixed bug preventing players from removing their own signs
This commit is contained in:
parent
ac1f2badc7
commit
fe15bab05f
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user