1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-22 22:34:43 +02: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 @Override
public boolean hasPermission(final Player base, final String node) public boolean hasPermission(final Player base, final String node)
{ {
return super.hasPermission(base, node); return base.hasPermission("*") || super.hasPermission(base, node);
} }
@Override @Override