mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 13:36:31 +00:00
Make sure can build checks in permbukkit/privileges work for admins/owners.
This commit is contained in:
parent
c6f25c0df6
commit
d72f831519
2 changed files with 2 additions and 2 deletions
|
@ -78,6 +78,6 @@ public class PermissionsBukkitHandler extends SuperpermsHandler
|
||||||
@Override
|
@Override
|
||||||
public boolean canBuild(Player base, String group)
|
public boolean canBuild(Player base, String group)
|
||||||
{
|
{
|
||||||
return base.hasPermission("essentials.build") || base.hasPermission("permissions.build");
|
return hasPermission(base, "essentials.build") || hasPermission(base, "permissions.build");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,7 +55,7 @@ public class PrivilegesHandler extends SuperpermsHandler
|
||||||
@Override
|
@Override
|
||||||
public boolean canBuild(Player base, String group)
|
public boolean canBuild(Player base, String group)
|
||||||
{
|
{
|
||||||
return base.hasPermission("essentials.build") || base.hasPermission("privileges.build");
|
return hasPermission(base, "essentials.build") || hasPermission(base, "privileges.build");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue