|
@@ -56,10 +56,10 @@ public abstract class ChatCommand implements TabExecutor {
|
|
|
|
|
|
case 1:
|
|
|
if (CommandUtils.shouldEnableToggle(args[0])) {
|
|
|
- if (!CommandUtils.hasPlayerDataKey(sender)) {
|
|
|
+ if (CommandUtils.noConsoleUsage(sender)) {
|
|
|
return true;
|
|
|
}
|
|
|
- if (CommandUtils.noConsoleUsage(sender)) {
|
|
|
+ if (!CommandUtils.hasPlayerDataKey(sender)) {
|
|
|
return true;
|
|
|
}
|
|
|
|
|
@@ -68,10 +68,10 @@ public abstract class ChatCommand implements TabExecutor {
|
|
|
}
|
|
|
|
|
|
if (CommandUtils.shouldDisableToggle(args[0])) {
|
|
|
- if (!CommandUtils.hasPlayerDataKey(sender)) {
|
|
|
+ if (CommandUtils.noConsoleUsage(sender)) {
|
|
|
return true;
|
|
|
}
|
|
|
- if (CommandUtils.noConsoleUsage(sender)) {
|
|
|
+ if (!CommandUtils.hasPlayerDataKey(sender)) {
|
|
|
return true;
|
|
|
}
|
|
|
|