Update biomecolored to support biome-type-based,

biome-temperature-based and biome-rainfail-based shading
This commit is contained in:
Mike Primm 2011-06-20 16:00:28 -05:00
parent edf7d4f5c8
commit 6efbf3a3df
9 changed files with 288 additions and 71 deletions

View file

@ -318,6 +318,14 @@ public class KzedMap extends MapType {
return false;
}
public boolean isRawBiomeDataNeeded() {
for(MapTileRenderer r : renderers) {
if(r.isRawBiomeDataNeeded())
return true;
}
return false;
}
public String getName() {
return "KzedMap";
}