mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-24 04:05:17 +00:00
Fix the trees, https://git.minetest.land/Wuzzy/MineClone2/issues/1031
This commit is contained in:
parent
948265fd6b
commit
b0f151147c
1 changed files with 2 additions and 2 deletions
|
@ -1134,7 +1134,7 @@ minetest.register_lbm({
|
|||
name = "mcl_core:lbm_birch",
|
||||
nodenames = {"mcl_core:birchsapling"},
|
||||
run_at_every_load = true,
|
||||
action = grow_spruce
|
||||
action = grow_birch
|
||||
})
|
||||
|
||||
-- Acacia tree
|
||||
|
@ -1151,7 +1151,7 @@ minetest.register_lbm({
|
|||
name = "mcl_core:lbm_acacia",
|
||||
nodenames = {"mcl_core:acaciasapling"},
|
||||
run_at_every_load = true,
|
||||
action = grow_spruce
|
||||
action = grow_acacia
|
||||
})
|
||||
|
||||
local function leafdecay_particles(pos, node)
|
||||
|
|
Loading…
Reference in a new issue