mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 18:41:09 +01:00
Fix floating vines rarely generating in jungles
This commit is contained in:
parent
5647fbf6e0
commit
c49efcf9ad
1 changed files with 1 additions and 1 deletions
|
@ -1392,7 +1392,7 @@ local function generate_tree_decorations(minp, maxp, seed, data, param2_data, ar
|
|||
-- Pass 1: Generate cocoas at jungle trees
|
||||
for n = 1, #jungletree do
|
||||
|
||||
pos = jungletree[n]
|
||||
pos = table.copy(jungletree[n])
|
||||
treepos = table.copy(pos)
|
||||
|
||||
if minetest.find_node_near(pos, 1, {"mcl_core:jungleleaves"}) then
|
||||
|
|
Loading…
Reference in a new issue