Having an option to disable commands from the config was a bad idea that

encouraged lazy admins. 

NOTE: If you were using these config options instead of relying on
permissions, you will need to reconfigure these commands to be disabled
via permissions.
This commit is contained in:
GJ
2013-02-01 13:34:33 -05:00
parent a3e9d12f6a
commit 2df285fd7c
4 changed files with 24 additions and 105 deletions

View File

@ -27,7 +27,7 @@ public class XplockCommand implements CommandExecutor {
return true;
}
if (!mcMMO.spoutEnabled || !Config.getInstance().getCommandXPLockEnabled() || !SpoutConfig.getInstance().getXPBarEnabled()) {
if (!mcMMO.spoutEnabled || !SpoutConfig.getInstance().getXPBarEnabled()) {
sender.sendMessage(LocaleLoader.getString("Commands.Disabled"));
return true;
}