Don't need additional delay - using AsycnQueue for that

This commit is contained in:
Mike Primm 2011-05-09 23:38:38 -05:00 committed by FrozenCow
parent 0a1de1b18e
commit 5f23afe608

View File

@ -151,7 +151,7 @@ public class MapManager {
public void handle(MapTile t) {
if(do_sync_render)
scheduler.scheduleSyncDelayedTask(plug_in,
new FullWorldRenderState(t), (int)(timeslice_interval*20));
new FullWorldRenderState(t), 1);
else
render(t);
}