diff --git a/src/main/java/net/nuggetmc/tplus/command/commands/BotCommand.java b/src/main/java/net/nuggetmc/tplus/command/commands/BotCommand.java index f1ecd41..8e59e09 100644 --- a/src/main/java/net/nuggetmc/tplus/command/commands/BotCommand.java +++ b/src/main/java/net/nuggetmc/tplus/command/commands/BotCommand.java @@ -367,15 +367,11 @@ public class BotCommand extends CommandInstance { if (args.length == 2) { output.add("setgoal"); - output.add("mobtarget"); } else if (args.length == 3) { if (args[1].equalsIgnoreCase("setgoal")) { Arrays.stream(EnumTargetGoal.values()).forEach(goal -> output.add(goal.name().replace("_", "").toLowerCase())); - } else if (args[1].equalsIgnoreCase("mobtarget")) { - output.add("true"); - output.add("false"); } }