1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-07-04 06:34:44 +02:00

fix adminchat returning too early if send by console

This commit is contained in:
OverCrave
2019-04-18 22:58:50 +02:00
parent 820c3260c8
commit 817b5364cf

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