1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-02-25 08:52:40 +01:00

Check for explicit * permission when using PEX.

This commit is contained in:
md_5 2012-09-21 19:53:20 +10:00
parent 436376898f
commit fbdc7c39d9

View File

@ -66,7 +66,7 @@ public class PermissionsExHandler extends SuperpermsHandler
@Override
public boolean hasPermission(final Player base, final String node)
{
return super.hasPermission(base, node);
return base.hasPermission("*") || super.hasPermission(base, node);
}
@Override