Check for explicit * permission when using PEX.

This commit is contained in:
md_5 2012-09-21 19:53:20 +10:00
parent 84afc80873
commit 3e80bf479e

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