Add marker update/delete events for client

This commit is contained in:
Mike Primm 2011-09-03 01:06:00 -05:00
parent c486c42de8
commit dd8a84165b
3 changed files with 126 additions and 8 deletions

View file

@ -790,7 +790,8 @@ public class MapManager {
public void pushUpdate(String worldName, Object update) {
DynmapWorld world = getWorld(worldName);
world.updates.pushUpdate(update);
if(world != null)
world.updates.pushUpdate(update);
}
public Object[] getWorldUpdates(String worldName, long since) {