diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java b/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java index c14bfa72e..7ea9bc009 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandmsg.java @@ -38,11 +38,12 @@ public class Commandmsg extends EssentialsCommand if (args[0].equalsIgnoreCase(Console.NAME)) { - sender.sendMessage("[Me -> " + senderName + "§f] " + message); + sender.sendMessage("[Me -> " + Console.NAME + "§f] " + message); CommandSender cs = Console.getCommandSender(server); cs.sendMessage("[" + senderName + " -> Me§f] " + message); replyTo.setReplyTo(cs); Console.getConsoleReplyTo().setReplyTo(sender); + return; } List matches = server.matchPlayer(args[0]);