Fix SWCommandUtils

Dieser Commit ist enthalten in:
yoyosource 2022-05-30 15:04:51 +02:00 committet von Lixfel
Ursprung 57ab89e058
Commit b25bf2a79c

Datei anzeigen

@ -46,7 +46,7 @@ public class SWCommandUtils {
@Override
public Collection<String> tabCompletes(Object sender, String[] previousArguments, String s) {
return tabCompleter.apply(sender, s);
return ((BiFunction<Object, Object, Collection<String>>) tabCompleter).apply(sender, s);
}
};