mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-14 23:21:07 +01:00
Quick patch to get cherry saplings growing pending inclusing of a proper tree API
This commit is contained in:
parent
6ada1a3477
commit
49c8ae2fa0
1 changed files with 3 additions and 0 deletions
|
@ -962,6 +962,7 @@ end
|
||||||
-- pos: Position
|
-- pos: Position
|
||||||
-- node: Node table of the node at this position, from minetest.get_node
|
-- node: Node table of the node at this position, from minetest.get_node
|
||||||
-- Returns true on success and false on failure
|
-- Returns true on success and false on failure
|
||||||
|
-- TODO: replace this with a proper tree API
|
||||||
function mcl_core.grow_sapling(pos, node)
|
function mcl_core.grow_sapling(pos, node)
|
||||||
if node.name == "mcl_core:sapling" then
|
if node.name == "mcl_core:sapling" then
|
||||||
grow_oak(pos)
|
grow_oak(pos)
|
||||||
|
@ -975,6 +976,8 @@ function mcl_core.grow_sapling(pos, node)
|
||||||
grow_spruce(pos)
|
grow_spruce(pos)
|
||||||
elseif node.name == "mcl_core:birchsapling" then
|
elseif node.name == "mcl_core:birchsapling" then
|
||||||
grow_birch(pos)
|
grow_birch(pos)
|
||||||
|
elseif node.name == "mcl_cherry_blossom:cherrysapling" then
|
||||||
|
return mcl_cherry_blossom.generate_cherry_tree(pos)
|
||||||
else
|
else
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue