diff --git a/worldedit-core/src/main/java/com/fastasyncworldedit/core/extension/factory/parser/RichParser.java b/worldedit-core/src/main/java/com/fastasyncworldedit/core/extension/factory/parser/RichParser.java index 4bfe5ffabd..37c4697d30 100644 --- a/worldedit-core/src/main/java/com/fastasyncworldedit/core/extension/factory/parser/RichParser.java +++ b/worldedit-core/src/main/java/com/fastasyncworldedit/core/extension/factory/parser/RichParser.java @@ -124,7 +124,7 @@ public E parseFromInput(String input, ParserContext context) throws InputParseEx * @return a stream of suggestions matching the given input for the argument at the given index. */ protected Stream getSuggestions(String argumentInput, int index) { - return Stream.empty(); + return getSuggestions(argumentInput, index, new ParserContext()); } /** @@ -136,7 +136,7 @@ protected Stream getSuggestions(String argumentInput, int index) { * @return a stream of suggestions matching the given input for the argument at the given index. */ protected Stream getSuggestions(String argumentInput, int index, ParserContext context) { - return getSuggestions(argumentInput, index); + return Stream.empty(); } /**