mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-23 19:16:31 +01:00
commit
98651a872e
@ -220,7 +220,7 @@ public class Chat_Permissions3 extends Chat {
|
||||
|
||||
@Override
|
||||
public String getGroupPrefix(String world, String group) {
|
||||
return this.getGroupPrefix(world, group);
|
||||
return this.perms.getGroupPrefix(world, group);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -230,7 +230,7 @@ public class Chat_Permissions3 extends Chat {
|
||||
|
||||
@Override
|
||||
public String getGroupSuffix(String world, String group) {
|
||||
return this.getGroupSuffix(world, group);
|
||||
return this.perms.getGroupSuffix(world, group);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -45,7 +45,7 @@ public class Permission_PermissionsBukkit extends Permission {
|
||||
if (perms == null) {
|
||||
Plugin perms = plugin.getServer().getPluginManager().getPlugin("PermissionsBukkit");
|
||||
if (perms != null) {
|
||||
perms = (PermissionsPlugin) perms;
|
||||
this.perms = (PermissionsPlugin) perms;
|
||||
log.info(String.format("[%s][Permission] %s hooked.", plugin.getDescription().getName(), name));
|
||||
}
|
||||
}
|
||||
|
@ -148,8 +148,8 @@ public class Permission_SimplyPerms extends Permission{
|
||||
public boolean groupRemove(String world, String group, String permission) {
|
||||
permission = permission.toLowerCase();
|
||||
if (world != null) {
|
||||
this.perms.removeGroupPermission(group, world, permission);
|
||||
permission = world + ":" + permission;
|
||||
this.perms.removeGroupPermission(group, world, permission);
|
||||
} else {
|
||||
this.perms.removeGroupPermission(group, permission);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user