Skip to content
Snippets Groups Projects
Commit fcd35889 authored by TenPlus1's avatar TenPlus1 Committed by Milan
Browse files

Fix bonemeal ethereal_sapling bug

parent 849573bd
No related branches found
No related tags found
No related merge requests found
......@@ -119,7 +119,8 @@ local function growth(pointed_thing)
})
-- 50/50 chance of growing a sapling
if minetest.get_item_group(node.name, "sapling") > 0 then
if minetest.get_item_group(node.name, "sapling") > 0
or minetest.get_item_group(node.name, "ethereal_sapling") > 0 then
if math.random(1, 2) == 1 then
return
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment