Skip to content
Snippets Groups Projects
Commit f17d7911 authored by paramat's avatar paramat
Browse files

Default, flowers: Use 'get_mapgen_setting()'

parent 497e6f62
No related branches found
No related tags found
No related merge requests found
......@@ -1523,12 +1523,12 @@ end
-- Mods using singlenode mapgen can call these functions to enable
-- the use of minetest.generate_ores or minetest.generate_decorations
local mg_params = minetest.get_mapgen_params()
if mg_params.mgname == "v6" then
local mg_name = minetest.get_mapgen_setting("mg_name")
if mg_name == "v6" then
default.register_ores()
default.register_mgv6_decorations()
minetest.register_on_generated(default.generate_nyancats)
elseif mg_params.mgname ~= "singlenode" then
elseif mg_name ~= "singlenode" then
default.register_biomes()
default.register_ores()
default.register_decorations()
......
......@@ -165,9 +165,9 @@ end
-- Mods using singlenode mapgen can call these functions to enable
-- the use of minetest.generate_ores or minetest.generate_decorations
local mg_params = minetest.get_mapgen_params()
if mg_params.mgname == "v6" then
local mg_name = minetest.get_mapgen_setting("mg_name")
if mg_name == "v6" then
flowers.register_mgv6_decorations()
elseif mg_params.mgname ~= "singlenode" then
elseif mg_name ~= "singlenode" then
flowers.register_decorations()
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment