Separated rendering from MapTile, removed separate cave logic (integrated in rendering) and temporarily removed/disabled zoom-rendering.

This commit is contained in:
FrozenCow 2011-01-06 03:30:50 +01:00
parent 225d28e177
commit c5d5a85a17
7 changed files with 462 additions and 482 deletions

View file

@ -88,12 +88,6 @@ public class WebServerRequest extends Thread {
sb.append(tu.tile.px + "_" + tu.tile.py + " " + tu.tile.zpx + "_" + tu.tile.zpy + " t\n");
}
}
for(TileUpdate tu : mgr.caveTileUpdates) {
if(tu.at >= cutoff) {
sb.append(tu.tile.px + "_" + tu.tile.py + " " + tu.tile.zpx + "_" + tu.tile.zpy + " c\n");
}
}
}
out.write(sb.toString().getBytes());