Fix colors bleeding into the next name, Fixes #285

This commit is contained in:
Eric Stokes 2011-12-02 18:19:26 -07:00
parent a0ab24a132
commit 15ce10671e

View File

@ -92,7 +92,7 @@ public class WhoCommand extends MultiverseCommand {
result = "Empty";
} else {
for (Player player : players) {
result += player.getDisplayName() + " ";
result += player.getDisplayName() + " " + ChatColor.WHITE;
}
}