Config overhaul is DONE!

This commit is contained in:
nossr50
2012-04-26 11:53:21 -07:00
parent 295b7a0701
commit 2729b37b76
18 changed files with 136 additions and 180 deletions

View File

@ -32,7 +32,7 @@ public class MchudCommand implements CommandExecutor {
return true;
}
if (!Config.spoutEnabled || !Config.xpbar) {
if (!Config.spoutEnabled || !Config.getSpoutXPBarEnabled()) {
sender.sendMessage(mcLocale.getString("Commands.Disabled"));
return true;
}

View File

@ -26,7 +26,7 @@ public class XplockCommand implements CommandExecutor {
return true;
}
if (!Config.spoutEnabled || !Config.xpbar || !Config.getCommandXPLockEnabled()) {
if (!Config.spoutEnabled || !Config.getSpoutXPBarEnabled() || !Config.getCommandXPLockEnabled()) {
sender.sendMessage(mcLocale.getString("Commands.Disabled"));
return true;
}