Fix biome rendering

This commit is contained in:
Mike Primm 2011-07-11 09:37:03 -05:00
parent b72cc2063a
commit 57ea6aefd6
5 changed files with 25 additions and 8 deletions

View file

@ -86,4 +86,10 @@ public class KzedMapTile extends MapTile {
public MapTile[] getAdjecentTiles() {
return map.getAdjecentTiles(this);
}
public boolean isBiomeDataNeeded() { return map.isBiomeDataNeeded(); }
public boolean isHightestBlockYDataNeeded() { return false; }
public boolean isRawBiomeDataNeeded() { return map.isRawBiomeDataNeeded(); }
public boolean isBlockTypeDataNeeded() { return true; }
}