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:
parent
436376898f
commit
fbdc7c39d9
@ -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…
x
Reference in New Issue
Block a user