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

@ -44,7 +44,7 @@ public class MccCommand implements CommandExecutor {
player.sendMessage("/mcstats " + LocaleLoader.getString("Commands.Stats"));
player.sendMessage("/mctop " + LocaleLoader.getString("Commands.Leaderboards"));
if (Config.getInstance().getCommandSkillResetEnabled() && Permissions.skillReset(player)) {
if (Permissions.skillReset(player)) {
player.sendMessage("/skillreset <skill|all> " + LocaleLoader.getString("Commands.Reset"));
}