Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ private boolean executeImmediately0(final CommandSource source, final ParseResul
}
} catch (final Throwable e) {
// Ugly, ugly swallowing of everything Throwable, because plugins are naughty.
throw new RuntimeException("Unable to invoke command " + parsed.getReader().getString() + "for " + source, e);
throw new RuntimeException("Unable to invoke command " + parsed.getReader().getString() + " for " + source, e);
} finally {
eventManager.fireAndForget(new PostCommandInvocationEvent(source, parsed.getReader().getString(), result));
}
Expand Down Expand Up @@ -400,4 +400,4 @@ private Executor figureAsyncExecutorForParsing() {
return MoreExecutors.directExecutor();
}
}
}
}