Skip to content

Commit

Permalink
Default, flowers: Use 'get_mapgen_setting()'
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Jul 7, 2016
1 parent 497e6f6 commit f17d791
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions mods/default/mapgen.lua
Expand Up @@ -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()
Expand Down
6 changes: 3 additions & 3 deletions mods/flowers/mapgen.lua
Expand Up @@ -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 comments on commit f17d791

Please sign in to comment.