mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-03 01:00:19 +01:00
Fix for NPE JsonTimerTask.java using wrong playerList
Removed unused PlayerList variable in MapManager.java
This commit is contained in:
parent
bd51387c10
commit
a1d7805116
@ -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…
Reference in New Issue
Block a user