From b45a4cf20af5f652a00a34d87d0e38c22570dc61 Mon Sep 17 00:00:00 2001 From: Eric Stokes Date: Sun, 21 Oct 2012 14:22:12 -0600 Subject: [PATCH] Fix NPCs Showing up in mv who This fixes #501. FINALLY! If anyone wants NPCs back, open a ticket, and I'll add a flag, but this is now the default behavior. --- .../MultiverseCore/commands/WhoCommand.java | 26 +++++++++++-------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java b/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java index 0c4353e5..e8a085fc 100644 --- a/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java +++ b/src/main/java/com/onarandombox/MultiverseCore/commands/WhoCommand.java @@ -24,6 +24,7 @@ import java.util.List; public class WhoCommand extends MultiverseCommand { private MVWorldManager worldManager; + private List visiblePlayers; public WhoCommand(MultiverseCore plugin) { super(plugin); @@ -51,6 +52,14 @@ public class WhoCommand extends MultiverseCommand { showAll = false; } + final Player[] onlinePlayers = plugin.getServer().getOnlinePlayers(); + this.visiblePlayers = new ArrayList(); + for (final Player player : onlinePlayers) { + if (p == null || p.canSee(player)) { + visiblePlayers.add(player); + } + } + if (args.size() == 1) { if (args.get(0).equalsIgnoreCase("--all") || args.get(0).equalsIgnoreCase("-a")) { showAll = true; @@ -69,19 +78,11 @@ public class WhoCommand extends MultiverseCommand { sender.sendMessage(String.format("%s--- Players in %s%s ---", ChatColor.AQUA, world.getColoredWorldString(), ChatColor.AQUA)); - sender.sendMessage(buildPlayerString(world, p)); + sender.sendMessage(this.buildPlayerString(world, p)); return; } } - final Player[] onlinePlayers = plugin.getServer().getOnlinePlayers(); - final List visiblePlayers = new ArrayList(); - for (final Player player : onlinePlayers) { - if (p == null || p.canSee(player)) { - visiblePlayers.add(player); - } - } - // multiworld mode sender.sendMessage(ChatColor.AQUA + "--- Worlds and their players --- " + visiblePlayers.size() + "/" + plugin.getServer().getMaxPlayers()); @@ -100,11 +101,14 @@ public class WhoCommand extends MultiverseCommand { return; } - private static String buildPlayerString(MultiverseWorld world, Player viewer) { + private String buildPlayerString(MultiverseWorld world, Player viewer) { + // Retrieve the players in this world List players = world.getCBWorld().getPlayers(); StringBuilder playerBuilder = new StringBuilder(); for (Player player : players) { - if ((viewer == null) || viewer.canSee(player)) + // If the viewer is the console or the viewier is allowed to see the player, show them. + // Make sure we're also ONLY showing online players. + if (((viewer == null) || viewer.canSee(player)) && this.visiblePlayers.contains(player) ) playerBuilder.append(player.getDisplayName()).append(", "); } String bString = playerBuilder.toString();