diff --git a/src/main/java/tech/sbdevelopment/v10lift/commands/V10LiftTabCompleter.java b/src/main/java/tech/sbdevelopment/v10lift/commands/V10LiftTabCompleter.java index ce22a69..361e0ed 100644 --- a/src/main/java/tech/sbdevelopment/v10lift/commands/V10LiftTabCompleter.java +++ b/src/main/java/tech/sbdevelopment/v10lift/commands/V10LiftTabCompleter.java @@ -76,7 +76,7 @@ public class V10LiftTabCompleter implements TabCompleter { return StringUtil.copyPartialMatches(args[2], playerOrGroupNames, new ArrayList<>()); } else if (args[0].equalsIgnoreCase("setoffline")) { return StringUtil.copyPartialMatches(args[2], BOOL, new ArrayList<>()); - } else if (args[0].equalsIgnoreCase("build")) { + } else if (args[0].equalsIgnoreCase("build") && V10LiftPlugin.isWorldEditEnabled()) { return StringUtil.copyPartialMatches(args[2], List.of("worldedit"), new ArrayList<>()); } } else if (args.length == 4) {