From b225ecf51f86caf242042ce7a74230b71b9ca008 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sun, 2 Jul 2017 21:50:09 +0200 Subject: [PATCH] Force nolakes,nohills for flat mapgen --- mods/MAPGEN/mcl_mapgen_core/init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/mods/MAPGEN/mcl_mapgen_core/init.lua b/mods/MAPGEN/mcl_mapgen_core/init.lua index 06739c2f5..b7a7b4e04 100644 --- a/mods/MAPGEN/mcl_mapgen_core/init.lua +++ b/mods/MAPGEN/mcl_mapgen_core/init.lua @@ -884,6 +884,7 @@ if mg_name == "v6" then end if mg_name == "flat" then minetest.set_mapgen_setting("mg_flags", "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) end