Hotfix help system
Alle Prüfungen waren erfolgreich
SteamWarCI Build successful

Dieser Commit ist enthalten in:
yoyosource 2023-03-05 21:58:52 +01:00
Ursprung 6f7846956e
Commit 7474478489

Datei anzeigen

@ -86,7 +86,8 @@ public abstract class AbstractSWCommand<T> {
try {
if (commandList.stream().noneMatch(s -> s.invoke(errors::add, sender, alias, args))) {
errors.forEach(Runnable::run);
} else if (helpCommandList.stream().noneMatch(s -> s.invoke(errors::add, sender, alias, args))) {
} else return;
if (errors.isEmpty() && helpCommandList.stream().noneMatch(s -> s.invoke(errors::add, sender, alias, args))) {
errors.forEach(Runnable::run);
}
} catch (CommandFrameworkException e) {