Fix "There are players in <Java Object>"

This commit is contained in:
Eric Stokes 2011-08-31 21:05:53 -06:00
parent 751ed5a8e8
commit d09d340e0f

View File

@ -58,7 +58,7 @@ public class WhoCommand extends MultiverseCommand {
if (worlds.size() == 0) {
sender.sendMessage("Multiverse does not know about any of your worlds :(");
} else if (worlds.size() == 1) {
sender.sendMessage(ChatColor.AQUA + "--- " + "Players in" + ChatColor.YELLOW + worlds.get(0) + ChatColor.AQUA + " ---");
sender.sendMessage(ChatColor.AQUA + "--- Players in" + worlds.get(0).getColoredWorldString() + ChatColor.AQUA + " ---");
} else {
sender.sendMessage(ChatColor.AQUA + "--- There are players in ---");
}