diff --git a/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java b/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java index 9ae8b7f1..9fe03e06 100644 --- a/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java +++ b/BauSystem_Main/src/de/steamwar/bausystem/features/tracer/TraceCommand.java @@ -268,7 +268,7 @@ public class TraceCommand extends SWCommand { @Override public Collection tabCompletes(CommandSender sender, PreviousArguments previousArguments, String s) { return ViewFlag.flags.stream() - .flatMap(viewFlag -> Stream.concat(Stream.of("--" + viewFlag.name), + .flatMap(viewFlag -> Stream.concat(Stream.of("-" + viewFlag.name), Arrays.stream(viewFlag.aliases).map(name -> "-" + name))) .collect(Collectors.toList()); }