diff options
Diffstat (limited to 'src/mapgen/mapgen.h')
-rw-r--r-- | src/mapgen/mapgen.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mapgen/mapgen.h b/src/mapgen/mapgen.h index abac79016..b60aea57e 100644 --- a/src/mapgen/mapgen.h +++ b/src/mapgen/mapgen.h @@ -36,6 +36,7 @@ with this program; if not, write to the Free Software Foundation, Inc., #define MG_FLAT 0x08 // Deprecated. Moved into mgv6 flags #define MG_LIGHT 0x10 #define MG_DECORATIONS 0x20 +#define MG_BIOMES 0x40 typedef u8 biome_t; // copy from mg_biome.h to avoid an unnecessary include @@ -122,7 +123,7 @@ struct MapgenParams { u64 seed = 0; s16 water_level = 1; s16 mapgen_limit = MAX_MAP_GENERATION_LIMIT; - u32 flags = MG_CAVES | MG_LIGHT | MG_DECORATIONS; + u32 flags = MG_CAVES | MG_LIGHT | MG_DECORATIONS | MG_BIOMES; BiomeParams *bparams = nullptr; |