1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-20 10:43:12 +01:00

Fixed /me to work, confirmed to work!

This commit is contained in:
nossr50
2010-12-01 07:50:00 -08:00
parent 91a9e1350b
commit 58c1c95daf
2 changed files with 6 additions and 3 deletions

View File

@@ -55,7 +55,9 @@ public class vMinecraftCommands{
//=====================================================================
public static int me(Player player, String[] args)
{
vMinecraftChat.emote(player, args);
String str = etc.combineSplit(0, args, " ");
if (args.length < 1) {return EXIT_FAIL;}
vMinecraftChat.emote(player, str);
return EXIT_SUCCESS;
}
//=====================================================================