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);