Fix biome rendering

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

View file

@ -46,9 +46,9 @@ public abstract class MapTile {
public abstract String getKey();
public boolean isBiomeDataNeeded() { return false; }
public boolean isHightestBlockYDataNeeded() { return false; }
public boolean isRawBiomeDataNeeded() { return false; }
public boolean isBlockTypeDataNeeded() { return true; }
public abstract boolean isBiomeDataNeeded();
public abstract boolean isHightestBlockYDataNeeded();
public abstract boolean isRawBiomeDataNeeded();
public abstract boolean isBlockTypeDataNeeded();
}