Caught NullPointerException caused by getting the players list too early.

This commit is contained in:
sk89q 2010-12-01 22:43:36 -08:00
parent 8192a1962a
commit c96bb890b4

View File

@ -147,14 +147,17 @@ public void postReload() {
invinciblePlayers.clear(); invinciblePlayers.clear();
amphibiousPlayers.clear(); amphibiousPlayers.clear();
for (Player player : etc.getServer().getPlayerList()) { try {
if (player.isInGroup("wg-invincible")) { for (Player player : etc.getServer().getPlayerList()) {
invinciblePlayers.add(player.getName()); if (player.isInGroup("wg-invincible")) {
} invinciblePlayers.add(player.getName());
}
if (player.isInGroup("wg-amphibious")) { if (player.isInGroup("wg-amphibious")) {
amphibiousPlayers.add(player.getName()); amphibiousPlayers.add(player.getName());
}
} }
} catch (NullPointerException e) { // Thrown if loaded too early
} }
} }