(Hopefully) Fix NPE, delay PurgeTask start for a few seconds just to be

safe.
This commit is contained in:
gmcferrin
2013-01-10 20:49:33 -05:00
parent b554fb342a
commit f7e56d9833
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public class UserPurgeTask implements Runnable {
int userId = Integer.valueOf(userslist.get(i).get(1));
HashMap<Integer, ArrayList<String>> username = database.read("SELECT user FROM " + tablePrefix + "users WHERE id = '" + userId + "'");
if (Bukkit.getPlayer(username.get(1).get(0)).isOnline()) {
if (username != null && Bukkit.getOfflinePlayer(username.get(1).get(0)).isOnline()) {
continue;
}