Add support for new 1.1 biomes (beach, forest hills, desert hills, taiga hills, small mountains)

This commit is contained in:
Mike Primm 2012-01-16 20:43:29 -06:00
parent ecf3a64b74
commit 5e9ba1e6e3
8 changed files with 32 additions and 2 deletions

View file

@ -798,5 +798,10 @@ public class NewMapChunkCache implements MapChunkCache {
biome_to_bmap[Biome.ICE_MOUNTAINS.ordinal()] = BiomeMap.ICE_MOUNTAINS;
biome_to_bmap[Biome.MUSHROOM_ISLAND.ordinal()] = BiomeMap.MUSHROOM_ISLAND;
biome_to_bmap[Biome.MUSHROOM_SHORE.ordinal()] = BiomeMap.MUSHROOM_SHORE;
biome_to_bmap[Biome.BEACH.ordinal()] = BiomeMap.BEACH;
biome_to_bmap[Biome.DESERT_HILLS.ordinal()] = BiomeMap.DESERT_HILLS;
biome_to_bmap[Biome.FOREST_HILLS.ordinal()] = BiomeMap.FOREST_HILLS;
biome_to_bmap[Biome.TAIGA_HILLS.ordinal()] = BiomeMap.TAIGA_HILLS;
biome_to_bmap[Biome.SMALL_MOUNTAINS.ordinal()] = BiomeMap.SMALL_MOUNTAINS;
}
}