Fixed JsonTimerTask.

This commit is contained in:
FrozenCow 2011-02-26 18:23:35 +01:00
parent 119abb33eb
commit 5778611227
2 changed files with 2 additions and 4 deletions

View File

@ -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];
@ -63,4 +63,4 @@ class JsonTimerTask extends TimerTask {
}
}
}
}
}

View File

@ -23,8 +23,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();