From 9a3dad918faa861c3cf15e0cb2c2951f38cf2e30 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Tue, 30 Apr 2013 02:24:30 +0100 Subject: Support /me in console --- .../src/com/earth2me/essentials/commands/Commandme.java | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandme.java b/Essentials/src/com/earth2me/essentials/commands/Commandme.java index 4322592d4..6120caaf2 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandme.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandme.java @@ -4,6 +4,7 @@ import static com.earth2me.essentials.I18n._; import com.earth2me.essentials.User; import com.earth2me.essentials.Util; import org.bukkit.Server; +import org.bukkit.command.CommandSender; public class Commandme extends EssentialsCommand @@ -32,4 +33,18 @@ public class Commandme extends EssentialsCommand user.setDisplayNick(); ess.broadcastMessage(user, _("action", user.getDisplayName(), message)); } + + @Override + public void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception + { + if (args.length < 1) + { + throw new NotEnoughArgumentsException(); + } + + String message = getFinalArg(args, 0); + message = Util.replaceFormat(message); + + ess.getServer().broadcastMessage(_("action", "@", message)); + } } -- cgit v1.2.3