summaryrefslogtreecommitdiffstats
path: root/source/ChunkDef.h
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2013-10-12 23:49:55 +0200
committermadmaxoft <github@xoft.cz>2013-10-12 23:49:55 +0200
commit33e1ba42406395321dbb377b7f15d8a564366b23 (patch)
tree2ce84d9d5063c1921517ff65c8707d56545ad843 /source/ChunkDef.h
parentAPIDump: Documented the webserver vs world threads. (diff)
downloadcuberite-33e1ba42406395321dbb377b7f15d8a564366b23.tar
cuberite-33e1ba42406395321dbb377b7f15d8a564366b23.tar.gz
cuberite-33e1ba42406395321dbb377b7f15d8a564366b23.tar.bz2
cuberite-33e1ba42406395321dbb377b7f15d8a564366b23.tar.lz
cuberite-33e1ba42406395321dbb377b7f15d8a564366b23.tar.xz
cuberite-33e1ba42406395321dbb377b7f15d8a564366b23.tar.zst
cuberite-33e1ba42406395321dbb377b7f15d8a564366b23.zip
Diffstat (limited to '')
-rw-r--r--source/ChunkDef.h49
1 files changed, 47 insertions, 2 deletions
diff --git a/source/ChunkDef.h b/source/ChunkDef.h
index 4cc2d15b0..9db88f293 100644
--- a/source/ChunkDef.h
+++ b/source/ChunkDef.h
@@ -93,9 +93,54 @@ enum EMCSBiome
biJungle = 21,
biJungleHills = 22,
- // Automatically capture the maximum biome value into biMaxBiome:
+ // Release 1.7 biomes:
+ biJungleEdge = 23,
+ biDeepOcean = 24,
+ biStoneBeach = 25,
+ biColdBeach = 26,
+ biBirchForest = 27,
+ biBirchForestHills = 28,
+ biRoofedForest = 29,
+ biColdTaiga = 30,
+ biColdTaigaHills = 31,
+ biMegaTaiga = 32,
+ biMegaTaigaHills = 33,
+ biExtremeHillsPlus = 34,
+ biSavanna = 35,
+ biSavannaPlateau = 36,
+ biMesa = 37,
+ biMesaPlateauF = 38,
+ biMesaPlateau = 39,
+
+ // Automatically capture the maximum consecutive biome value into biMaxBiome:
biNumBiomes, // True number of biomes, since they are zero-based
- biMaxBiome = biNumBiomes - 1 // The maximum biome value
+ biMaxBiome = biNumBiomes - 1, // The maximum biome value
+
+ // Add this number to the biomes to get the variant
+ biVariant = 128,
+
+ // Release 1.7 biome variants:
+ biSunflowerPlains = 129,
+ biDesertM = 130,
+ biExtremeHillsM = 131,
+ biFlowerForest = 132,
+ biTaigaM = 133,
+ biSwamplandM = 134,
+ biIcePlainsSpikes = 140,
+ biJungleM = 149,
+ biJungleEdgeM = 151,
+ biBirchForestM = 155,
+ biBirchForestHillsM = 156,
+ biRoofedForestM = 157,
+ biColdTaigaM = 158,
+ biMegaSpruceTaiga = 160,
+ biMegaSpruceTaigaHills = 161,
+ biExtremeHillsPlusM = 162,
+ biSavannaM = 163,
+ biSavannaPlateauM = 164,
+ biMesaBryce = 165,
+ biMesaPlateauFM = 166,
+ biMesaPlateauM = 167,
} ;
// tolua_end