From e7d8bf1b55cf9bfc73f28b7e3bab0a06131b8ed6 Mon Sep 17 00:00:00 2001 From: batchprogrammer314 Date: Tue, 31 Aug 2021 11:40:47 -0500 Subject: [PATCH] removed tabcomplete for mobtarget --- .../java/net/nuggetmc/tplus/command/commands/BotCommand.java | 4 ---- 1 file changed, 4 deletions(-) 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"); } }