mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Check for explicit * permission when using PEX.
This commit is contained in:
parent
84afc80873
commit
3e80bf479e
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue