mirror of
https://github.com/EssentialsX/Essentials.git
synced 2024-11-18 00:25:32 +01:00
Check for explicit * permission when using PEX.
This commit is contained in:
parent
84afc80873
commit
3e80bf479e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user