diff options
-rw-r--r-- | Essentials/src/com/earth2me/essentials/commands/Commandlist.java | 2 |
1 files changed, 2 insertions, 0 deletions
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()); } |