1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-18 20:41:37 +02:00

Workaround for the crippled bukkit permissions.

Splits the node at . and checks for * permissions on all levels.
This commit is contained in:
snowleo
2011-07-18 13:18:28 +02:00
parent 64f27c9b53
commit f0e01dbd91

View File

@@ -5,7 +5,6 @@ import org.bukkit.entity.Player;
public class BukkitPermissionsHandler implements IPermissionsHandler
{
public String getGroup(Player base)
{
return "default";
@@ -23,6 +22,20 @@ public class BukkitPermissionsHandler implements IPermissionsHandler
public boolean hasPermission(Player base, String node)
{
if (base.hasPermission("-" + node))
{
return false;
}
final String[] parts = node.split("\\.");
final StringBuilder sb = new StringBuilder();
for (String part : parts)
{
if (base.hasPermission(sb.toString() + "*"))
{
return true;
}
sb.append(part).append(".");
}
return base.hasPermission(node);
}
@@ -35,5 +48,4 @@ public class BukkitPermissionsHandler implements IPermissionsHandler
{
return "";
}
}