Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-03 01:50:07 +01:00
Don't call next suggestion provider if there are no args left.
Dieser Commit ist enthalten in:
Ursprung
cba32732a3
Commit
6cfc60b2d6
@ -43,6 +43,11 @@ public abstract class SimpleCommand<T> extends ParameterCommand<T> {
|
|||||||
throw e;
|
throw e;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// There's nothing more anyway
|
||||||
|
if (args.position() == args.size()) {
|
||||||
|
return suggestions;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return suggestions;
|
return suggestions;
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren