diff --git a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java index 095445bf0..49dceb319 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/command/VelocityCommandManager.java @@ -256,7 +256,7 @@ public class VelocityCommandManager implements CommandManager { } } 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)); } @@ -400,4 +400,4 @@ public class VelocityCommandManager implements CommandManager { return MoreExecutors.directExecutor(); } } -} \ No newline at end of file +}