Add support for new 1.1 biomes (beach, forest hills, desert hills, taiga hills, small mountains)
This commit is contained in:
parent
ecf3a64b74
commit
5e9ba1e6e3
8 changed files with 32 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -23,5 +23,10 @@ public enum BiomeMap {
|
|||
ICE_PLAINS,
|
||||
ICE_MOUNTAINS,
|
||||
MUSHROOM_ISLAND,
|
||||
MUSHROOM_SHORE
|
||||
MUSHROOM_SHORE,
|
||||
BEACH,
|
||||
DESERT_HILLS,
|
||||
FOREST_HILLS,
|
||||
TAIGA_HILLS,
|
||||
SMALL_MOUNTAINS
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue