mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2026-02-21 03:03:02 +01:00
Fixed /me to work, confirmed to work!
This commit is contained in:
@@ -368,9 +368,10 @@ public class vMinecraftChat {
|
||||
//Output: boolean: If this feature is enabled
|
||||
//Use: /me but with our custom colors applied
|
||||
//=====================================================================
|
||||
public static boolean emote(Player player, String[] message)
|
||||
public static boolean emote(Player player, String message)
|
||||
{
|
||||
String[] msg = wordWrap("* " + getName(player) + Colors.White + message);
|
||||
String temp = message.toString();
|
||||
String[] msg = wordWrap("* " + getName(player) + " " + Colors.White + temp);
|
||||
for(String str: msg)
|
||||
gmsg(str);
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user