Fix CommandPart.generateArgumentArray for vararg
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful
Dieser Commit ist enthalten in:
Ursprung
46beaddbd7
Commit
7e96e4c2d5
@ -84,7 +84,7 @@ public class CommandPart {
|
||||
}
|
||||
|
||||
public void generateArgumentArray(List<Object> current, CommandSender commandSender, String[] args, int startIndex) {
|
||||
if (startIndex >= args.length) {
|
||||
if (startIndex >= args.length && varArgType == null) {
|
||||
throw new CommandParseException();
|
||||
}
|
||||
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren