1
0
mirror of https://github.com/D00Med/moreplants.git synced 2025-07-28 13:00:20 +02:00

Compare commits

3 Commits

View File

@ -636,6 +636,7 @@ minetest.register_node("moreplants:palmleaves2", {
visual_scale = 2.5,
tiles = {"moreplants_palmleaves2.png"},
inventory_image = "moreplants_palmleaves2.png",
use_texture_alpha = true,
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = false,
@ -655,6 +656,7 @@ minetest.register_node("moreplants:palmleaves1", {
visual_scale = 4.0,
tiles = {"moreplants_palmleaves.png"},
inventory_image = "moreplants_palmleaves.png",
use_texture_alpha = true,
paramtype = "light",
paramtype2 = "wallmounted",
sunlight_propagates = false,
@ -947,8 +949,7 @@ minetest.register_decoration({
-- })
end
local mgname = minetest.get_mapgen_setting("mg_name")
if mgname ~= "v6" and mgname ~= "singlenode" then
if minetest.get_mapgen_params().mgname ~= "v6" or minetest.get_mapgen_params().mgname ~= "singlenode" then
moreplants.mapgen()
end
@ -1005,3 +1006,5 @@ minetest.register_on_generated(function(minp, maxp)
end
end
end)
minetest.log("action", "[moreplants] loaded.")