mirror of
https://github.com/MilkBowl/Vault.git
synced 2024-11-23 11:05:48 +01:00
fixed a few minor copy/paste errors
This commit is contained in:
parent
69944e01a3
commit
a17ff21c60
@ -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));
|
||||
}
|
||||
|
@ -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