1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-04-02 09:46:24 +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; return true;
case 1: case 1:
if (!CommandUtils.hasPlayerDataKey(sender)) {
return true;
}
if (CommandUtils.shouldEnableToggle(args[0])) { if (CommandUtils.shouldEnableToggle(args[0])) {
if (!CommandUtils.hasPlayerDataKey(sender)) {
return true;
}
if (CommandUtils.noConsoleUsage(sender)) { if (CommandUtils.noConsoleUsage(sender)) {
return true; return true;
} }
@ -69,6 +68,9 @@ public abstract class ChatCommand implements TabExecutor {
} }
if (CommandUtils.shouldDisableToggle(args[0])) { if (CommandUtils.shouldDisableToggle(args[0])) {
if (!CommandUtils.hasPlayerDataKey(sender)) {
return true;
}
if (CommandUtils.noConsoleUsage(sender)) { if (CommandUtils.noConsoleUsage(sender)) {
return true; return true;
} }