From 20f62d90c9759f2ab650a40a8514a4dfc5a8c3ae Mon Sep 17 00:00:00 2001 From: cerevisiae Date: Tue, 30 Nov 2010 00:32:18 -0600 Subject: [PATCH] Removed the excess space between the player name and the message in /fabulous --- vminecraftCommands.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vminecraftCommands.java b/vminecraftCommands.java index 077c93882..23f03c980 100644 --- a/vminecraftCommands.java +++ b/vminecraftCommands.java @@ -224,7 +224,7 @@ public class vminecraftCommands{ if (msg.contains(playerName)) vminecraftChat.gmsg( playerName + vminecraftChat.rainbow( - msg.substring(playerName.length() - 1))); + msg.substring(playerName.length()))); else vminecraftChat.gmsg(vminecraftChat.rainbow(msg)); }