mapgen: drop mapgen id from child mapgens.
[oweals/minetest.git] / src / mapgen / mg_biome.h
index ad90f28f8fd6bf7763979ac8ab2899e90b946484..1f60f7baca431919591ff1df96743d03f3cd5f1c 100644 (file)
@@ -36,13 +36,8 @@ typedef u8 biome_t;
 
 #define BIOME_NONE ((biome_t)0)
 
-// TODO(hmmmm): Decide whether this is obsolete or will be used in the future
 enum BiomeType {
        BIOMETYPE_NORMAL,
-       BIOMETYPE_LIQUID,
-       BIOMETYPE_NETHER,
-       BIOMETYPE_AETHER,
-       BIOMETYPE_FLAT,
 };
 
 class Biome : public ObjDef, public NodeResolver {
@@ -57,6 +52,10 @@ public:
        content_t c_river_water;
        content_t c_riverbed;
        content_t c_dust;
+       content_t c_cave_liquid;
+       content_t c_dungeon;
+       content_t c_dungeon_alt;
+       content_t c_dungeon_stair;
 
        s16 depth_top;
        s16 depth_filler;