Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-24 18:10:08 +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;
|
||||
}
|
||||
}
|
||||
|
||||
// There's nothing more anyway
|
||||
if (args.position() == args.size()) {
|
||||
return suggestions;
|
||||
}
|
||||
}
|
||||
return suggestions;
|
||||
}
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren