Mapgen: Set biomes flag explicitly

This commit is contained in:
Wuzzy 2020-06-16 00:20:13 +02:00
parent 4524aee758
commit dded403409
1 changed files with 3 additions and 3 deletions

View File

@ -1080,13 +1080,13 @@ end
-- Apply mapgen-specific mapgen code
if mg_name == "v6" then
register_mgv6_decorations()
minetest.set_mapgen_setting("mg_flags", "caves,nodungeons,decorations,light", true)
minetest.set_mapgen_setting("mg_flags", "biomes,caves,nodungeons,decorations,light", true)
elseif superflat then
-- Enforce superflat-like mapgen: No hills, lakes or caves
minetest.set_mapgen_setting("mg_flags", "nocaves,nodungeons,nodecorations,light", true)
minetest.set_mapgen_setting("mg_flags", "biomes,nocaves,nodungeons,nodecorations,light", true)
minetest.set_mapgen_setting("mgflat_spflags", "nolakes,nohills", true)
else
minetest.set_mapgen_setting("mg_flags", "caves,nodungeons,decorations,light", true)
minetest.set_mapgen_setting("mg_flags", "biomes,caves,nodungeons,decorations,light", true)
end
-- Helper function for converting a MC probability to MT, with