mirror of
https://github.com/essentials/Essentials.git
synced 2025-08-19 13:01:20 +02:00
Check for explicit * permission when using PEX.
This commit is contained in:
@@ -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
|
||||
|
Reference in New Issue
Block a user