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,6 +147,7 @@ public void postReload() {
invinciblePlayers.clear();
amphibiousPlayers.clear();
try {
for (Player player : etc.getServer().getPlayerList()) {
if (player.isInGroup("wg-invincible")) {
invinciblePlayers.add(player.getName());
@ -156,6 +157,8 @@ public void postReload() {
amphibiousPlayers.add(player.getName());
}
}
} catch (NullPointerException e) { // Thrown if loaded too early
}
}
/**