Add lower cavern threshhold for all mgs that support it

This commit is contained in:
cora 2022-10-23 14:53:35 +02:00
parent 100bc53269
commit 015a9b1105
1 changed files with 9 additions and 1 deletions

View File

@ -105,7 +105,15 @@ if superflat then
end
if mg_name == "v7" then
minetest.set_mapgen_setting("mgv7_cavern_threshold", "0.15", true)
minetest.set_mapgen_setting("mgv7_cavern_threshold", "0.20", true)
elseif mg_name == "valleys" then
minetest.set_mapgen_setting("mgvalleys_cavern_threshold", "0.20", true)
elseif mg_name == "carpathian" then
minetest.set_mapgen_setting("mgcarpathian_cavern_threshold", "0.20", true)
elseif mg_name == "v5" then
minetest.set_mapgen_setting("mgv5_cavern_threshold", "0.20", true)
elseif mg_name == "fractal" then
minetest.set_mapgen_setting("mgfractal_cavern_threshold", "0.20", true)
end
local mg_flags_str = ""