From 544fb7faf95e20fd29d4b3632905596b7f21221a Mon Sep 17 00:00:00 2001 From: snowleo Date: Sat, 23 Jul 2011 00:46:54 +0200 Subject: Add white color after each name to prevent coloration of the next name. --- Essentials/src/com/earth2me/essentials/commands/Commandlist.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandlist.java b/Essentials/src/com/earth2me/essentials/commands/Commandlist.java index 29afb7b71..d5f946bf9 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandlist.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandlist.java @@ -102,6 +102,7 @@ public class Commandlist extends EssentialsCommand groupString.append("§7[HIDDEN]§f"); } groupString.append(user.getDisplayName()); + groupString.append("§f"); } sender.sendMessage(groupString.toString()); } @@ -142,6 +143,7 @@ public class Commandlist extends EssentialsCommand onlineUsers.append("§7[HIDDEN]§f"); } onlineUsers.append(user.getDisplayName()); + onlineUsers.append("§f"); } sender.sendMessage(onlineUsers.toString()); } -- cgit v1.2.3