Fix for NPE JsonTimerTask.java using wrong playerList
Removed unused PlayerList variable in MapManager.java
This commit is contained in:
parent
bd51387c10
commit
a1d7805116
2 changed files with 1 additions and 3 deletions
|
|
@ -35,7 +35,7 @@ class JsonTimerTask extends TimerTask {
|
|||
update.timestamp = current;
|
||||
update.servertime = world.getTime() % 24000;
|
||||
|
||||
Player[] players = mapManager.playerList.getVisiblePlayers();
|
||||
Player[] players = plugin.playerList.getVisiblePlayers();
|
||||
update.players = new Client.Player[players.length];
|
||||
for (int i = 0; i < players.length; i++) {
|
||||
Player p = players[i];
|
||||
|
|
|
|||
|
|
@ -24,8 +24,6 @@ public class MapManager {
|
|||
public Map<String, DynmapWorld> worlds = new HashMap<String, DynmapWorld>();
|
||||
public Map<String, DynmapWorld> inactiveworlds = new HashMap<String, DynmapWorld>();
|
||||
|
||||
public PlayerList playerList;
|
||||
|
||||
/* lock for our data structures */
|
||||
public static final Object lock = new Object();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue