Add a second huge jungle tree schematic, tweak the 1st one

This commit is contained in:
Wuzzy 2017-09-12 05:35:02 +02:00
parent 4d63d5b36d
commit 427eb32448
5 changed files with 33 additions and 25 deletions

View file

@ -629,8 +629,10 @@ end
-- Generate huge jungle tree with 2×2 trunk.
-- With pos being the lower X and the higher Z value of the trunk.
function mcl_core.generate_huge_jungle_tree(pos)
-- 2 variants
local r = math.random(1, 2)
local path = minetest.get_modpath("mcl_core") ..
"/schematics/mcl_core_jungle_tree_huge.mts"
"/schematics/mcl_core_jungle_tree_huge_"..r..".mts"
minetest.place_schematic({x = pos.x - 6, y = pos.y - 1, z = pos.z - 7}, path, "random", nil, false)
end