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

@ -98,4 +98,9 @@ public class KzedZoomedMapTile extends MapTile {
return null;
}
public boolean isBiomeDataNeeded() { return originalTile.isBiomeDataNeeded(); }
public boolean isHightestBlockYDataNeeded() { return false; }
public boolean isRawBiomeDataNeeded() { return originalTile.isRawBiomeDataNeeded(); }
public boolean isBlockTypeDataNeeded() { return true; }
}