If enforceaccess == false, show all players all worlds (unless they're hidden) also for mv who

This commit is contained in:
Eric Stokes 2011-10-16 00:38:49 -06:00
parent 54e7bc454a
commit 2d0eb7e7bb

View File

@ -77,7 +77,7 @@ public class WhoCommand extends MultiverseCommand {
continue;
}
if (p != null && (!this.plugin.getMVPerms().canEnterWorld(p, world))) {
if (MultiverseCore.EnforceAccess && p != null && (!this.plugin.getMVPerms().canEnterWorld(p, world))) {
continue;
}
List<Player> players = world.getCBWorld().getPlayers();