mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-13 06:06:28 +01:00
Merge branch 'master' of https://Sleaker@github.com/MilkBowl/Vault.git
This commit is contained in:
commit
e797ba912e
@ -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
|
||||
|
@ -142,7 +142,7 @@ public class Economy_AEco implements Economy {
|
||||
@EventHandler(priority = EventPriority.MONITOR)
|
||||
public void onPluginDisable(PluginDisableEvent event) {
|
||||
if (economy.economy != null) {
|
||||
if (event.getPlugin().getDescription().getName().equals("3co")) {
|
||||
if (event.getPlugin().getDescription().getName().equals("AEco")) {
|
||||
economy.economy = null;
|
||||
log.info(String.format("[%s][Economy] %s unhooked.", plugin.getDescription().getName(), economy.name));
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -61,7 +61,7 @@ public class Permission_Starburst extends Permission {
|
||||
public void onPluginEnable(PluginEnableEvent event) {
|
||||
if (perms == null) {
|
||||
Plugin p = event.getPlugin();
|
||||
if (p.getDescription().getName().equals("bPermissions") && p.isEnabled()) {
|
||||
if (p.getDescription().getName().equals("Starburst") && p.isEnabled()) {
|
||||
perms = (StarburstPlugin) p;
|
||||
log.info(String.format("[%s][Permission] %s hooked.", plugin.getDescription().getName(), name));
|
||||
}
|
||||
@ -71,7 +71,7 @@ public class Permission_Starburst extends Permission {
|
||||
@EventHandler(priority = EventPriority.MONITOR)
|
||||
public void onPluginDisable(PluginDisableEvent event) {
|
||||
if (perms != null) {
|
||||
if (event.getPlugin().getDescription().getName().equals("bPermissions")) {
|
||||
if (event.getPlugin().getDescription().getName().equals("Starburst")) {
|
||||
perms = null;
|
||||
log.info(String.format("[%s][Permission] %s un-hooked.", plugin.getDescription().getName(), name));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user