QOL #203
@ -74,7 +74,11 @@ public class ItemBindCommand extends SWCommand {
|
|||||||
}
|
}
|
||||||
if (tabCompletes == null) return null;
|
if (tabCompletes == null) return null;
|
||||||
if (args.length == 0) {
|
if (args.length == 0) {
|
||||||
return tabCompletes.stream().map(t -> t.substring(1)).filter(t -> !t.contains(":")).collect(Collectors.toSet());
|
return tabCompletes.stream()
|
||||||
|
.map(t -> t.substring(1))
|
||||||
|
.filter(t -> !t.contains(":"))
|
||||||
|
.filter(t -> !t.equals("bind"))
|
||||||
|
.collect(Collectors.toSet());
|
||||||
}
|
}
|
||||||
return tabCompletes;
|
return tabCompletes;
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren