Fix stuff
Dieser Commit ist enthalten in:
Ursprung
fa9268ce1b
Commit
2edb3dd951
@ -115,7 +115,7 @@ public class SWCommandUtils {
|
|||||||
arguments[arguments.length - 1] = varArgument;
|
arguments[arguments.length - 1] = varArgument;
|
||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < parameters.length - (varArgType != null ? 1 : 0); i++) {
|
for (int i = 0; i < parameters.length - (varArgType != null ? 1 : 0); i++) {
|
||||||
arguments[i + 1] = parameters[i].map(Arrays.copyOf(args, Math.max(index - 1, 0)), args[index]);
|
arguments[i + 1] = parameters[i].map(Arrays.copyOf(args, index), args[index]);
|
||||||
index++;
|
index++;
|
||||||
if (arguments[i + 1] == null) {
|
if (arguments[i + 1] == null) {
|
||||||
throw new CommandParseException();
|
throw new CommandParseException();
|
||||||
@ -128,7 +128,7 @@ public class SWCommandUtils {
|
|||||||
arguments[arguments.length - 1] = varArgument;
|
arguments[arguments.length - 1] = varArgument;
|
||||||
|
|
||||||
for (int i = 0; i < length; i++) {
|
for (int i = 0; i < length; i++) {
|
||||||
Object value = parameters[parameters.length - 1].map(Arrays.copyOf(args, Math.max(index - 1, 0)), args[index]);
|
Object value = parameters[parameters.length - 1].map(Arrays.copyOf(args, index), args[index]);
|
||||||
if (value == null) {
|
if (value == null) {
|
||||||
throw new CommandParseException();
|
throw new CommandParseException();
|
||||||
}
|
}
|
||||||
|
In neuem Issue referenzieren
Einen Benutzer sperren