diff --git a/src/main/java/me/firephoenix/velocitylogging/listener/ChatCommandListener.java b/src/main/java/me/firephoenix/velocitylogging/listener/ChatCommandListener.java index f88a8cf..116c75b 100644 --- a/src/main/java/me/firephoenix/velocitylogging/listener/ChatCommandListener.java +++ b/src/main/java/me/firephoenix/velocitylogging/listener/ChatCommandListener.java @@ -23,7 +23,7 @@ public class ChatCommandListener { public void onCommand(CommandExecuteEvent event) { if (!(event.getCommandSource() instanceof Player player)) return; - VelocityLogging.INSTANCE.addToLogFile(event.getCommand(), player.getUsername(), player.getCurrentServer().isEmpty() ? "Unknown" : player.getCurrentServer().get().getServerInfo().getName()); + VelocityLogging.INSTANCE.addToLogFile("(Command)" + event.getCommand(), player.getUsername(), player.getCurrentServer().isEmpty() ? "Unknown" : player.getCurrentServer().get().getServerInfo().getName()); } }