From b5ba5441cf769928828cdffa4b89d496d2e0ea9f Mon Sep 17 00:00:00 2001 From: aroooo Date: Fri, 4 Nov 2022 16:53:09 +0100 Subject: [PATCH] feat(cmd): remove from main cmd --- .../main/java/net/artelnatif/nicko/command/NickoCommand.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/nicko-core/src/main/java/net/artelnatif/nicko/command/NickoCommand.java b/nicko-core/src/main/java/net/artelnatif/nicko/command/NickoCommand.java index e21a0de..a4d0d6e 100644 --- a/nicko-core/src/main/java/net/artelnatif/nicko/command/NickoCommand.java +++ b/nicko-core/src/main/java/net/artelnatif/nicko/command/NickoCommand.java @@ -3,7 +3,6 @@ package net.artelnatif.nicko.command; import net.artelnatif.nicko.NickoBukkit; import net.artelnatif.nicko.command.sub.NickoCheckSubCmd; import net.artelnatif.nicko.command.sub.NickoDebugSubCmd; -import net.artelnatif.nicko.command.sub.NickoDisguiseSubCmd; import net.artelnatif.nicko.command.sub.NickoGUISubCmd; import net.artelnatif.nicko.gui.MainGUI; import org.bukkit.ChatColor; @@ -33,7 +32,6 @@ public class NickoCommand implements CommandExecutor { if (sender instanceof Player player) { if (args.length >= 1) { switch (args[0]) { - case "disguise" -> new NickoDisguiseSubCmd(this).execute(sender); case "debug" -> new NickoDebugSubCmd(this).execute(sender, args); case "check" -> new NickoCheckSubCmd(this).execute(player, args); case "gui" -> new NickoGUISubCmd(this).execute(sender, args);