Add white color after each name to prevent coloration of the next name.

This commit is contained in:
snowleo 2011-07-23 00:46:54 +02:00
parent 5027198010
commit fdb46f60fd

View File

@ -102,6 +102,7 @@ public class Commandlist extends EssentialsCommand
groupString.append("§7[HIDDEN]§f"); groupString.append("§7[HIDDEN]§f");
} }
groupString.append(user.getDisplayName()); groupString.append(user.getDisplayName());
groupString.append("§f");
} }
sender.sendMessage(groupString.toString()); sender.sendMessage(groupString.toString());
} }
@ -142,6 +143,7 @@ public class Commandlist extends EssentialsCommand
onlineUsers.append("§7[HIDDEN]§f"); onlineUsers.append("§7[HIDDEN]§f");
} }
onlineUsers.append(user.getDisplayName()); onlineUsers.append(user.getDisplayName());
onlineUsers.append("§f");
} }
sender.sendMessage(onlineUsers.toString()); sender.sendMessage(onlineUsers.toString());
} }