fixed copy/paste error

This commit is contained in:
mung3r 2011-09-22 20:01:32 -07:00
parent affbda067c
commit 7d1de54d6e
2 changed files with 2 additions and 2 deletions

View File

@ -168,7 +168,7 @@ public class Economy_3co implements Economy {
public void onPluginDisable(PluginDisableEvent event) {
if (economy.economy != null) {
if (event.getPlugin().getDescription().getName().equals("Essentials")) {
if (event.getPlugin().getDescription().getName().equals("3co")) {
economy.economy = null;
log.info(String.format("[%s][Economy] %s unhooked.", plugin.getDescription().getName(), economy.name));
}

View File

@ -185,7 +185,7 @@ public class Economy_BOSE implements Economy {
public void onPluginDisable(PluginDisableEvent event) {
if (economy.economy != null) {
if (event.getPlugin().getDescription().getName().equals("Essentials")) {
if (event.getPlugin().getDescription().getName().equals("BOSEconomy")) {
economy.economy = null;
log.info(String.format("[%s][Economy] %s unhooked.", plugin.getDescription().getName(), economy.name));
}