From 076b3fe44aeda4601293b2be6965204d565b53d6 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 21 Mar 2017 03:21:23 +0100 Subject: [PATCH] Disable default dungeons, disable trash in mgflat --- mods/MAPGEN/mcl_mapgen_core/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/MAPGEN/mcl_mapgen_core/init.lua b/mods/MAPGEN/mcl_mapgen_core/init.lua index 26d489245..10d7ee55b 100644 --- a/mods/MAPGEN/mcl_mapgen_core/init.lua +++ b/mods/MAPGEN/mcl_mapgen_core/init.lua @@ -956,7 +956,7 @@ if mg_name == "v6" then register_mgv6_decorations() end if mg_name == "flat" then - minetest.set_mapgen_setting("mg_flags", "nocaves,nodungeons,nodecorations") + minetest.set_mapgen_setting("mg_flags", "nocaves,nodungeons,nodecorations,light", true) else - minetest.set_mapgen_setting("mg_flags", "nodungeons") + minetest.set_mapgen_setting("mg_flags", "caves,nodungeons,decorations,light", true) end