diff --git a/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java b/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java index fe360d4d6..90b6292f7 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/console/VelocityConsole.java @@ -136,6 +136,10 @@ public final class VelocityConsole extends SimpleTerminalConsole implements Cons if (!this.server.getCommandManager().executeAsync(this, command).join()) { sendMessage(Component.translatable("velocity.command.command-does-not-exist", NamedTextColor.RED)); + return; + } + if (server.getConfiguration().isLogCommandExecutions()) { + logger.info("CONSOLE -> executed command /{}", command); } } catch (Exception e) { logger.error("An error occurred while running this command.", e);