Signed-off-by: yoyosource <yoyosource@nidido.de>
Dieser Commit ist enthalten in:
Ursprung
c0880fc62a
Commit
438010a7fb
@ -74,7 +74,11 @@ public class ItemBindCommand extends SWCommand {
|
||||
}
|
||||
if (tabCompletes == null) return null;
|
||||
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;
|
||||
}
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren