fix: open gui after sub-cmd

This commit is contained in:
aroooo 2022-11-04 17:22:18 +01:00
parent 4450eaaf8c
commit 225224b34c

View file

@ -35,6 +35,7 @@ public class NickoCommand implements CommandExecutor {
case "check" -> new NickoCheckSubCmd(this).execute(player, args);
default -> sendHelpMessages(sender);
}
return false;
}
new MainGUI(player).open();