summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-07-23 00:46:54 +0200
committersnowleo <schneeleo@gmail.com>2011-07-23 00:47:02 +0200
commit544fb7faf95e20fd29d4b3632905596b7f21221a (patch)
treed6dd6a862c0ebf79c5bebb4b8137281b76934fc3
parente1425f5e2542e7fdc4108f21148bc1dc33aba1e2 (diff)
downloadEssentials-544fb7faf95e20fd29d4b3632905596b7f21221a.tar
Essentials-544fb7faf95e20fd29d4b3632905596b7f21221a.tar.gz
Essentials-544fb7faf95e20fd29d4b3632905596b7f21221a.tar.lz
Essentials-544fb7faf95e20fd29d4b3632905596b7f21221a.tar.xz
Essentials-544fb7faf95e20fd29d4b3632905596b7f21221a.zip
Add white color after each name to prevent coloration of the next name.
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandlist.java2
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());
}