diff options
Diffstat (limited to 'bonemeal.lua')
-rw-r--r-- | bonemeal.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bonemeal.lua b/bonemeal.lua index 60c025c..ce8be4c 100644 --- a/bonemeal.lua +++ b/bonemeal.lua @@ -219,6 +219,11 @@ local function growth(pointed_thing) elseif node.name == "default:aspen_sapling"
and enough_height(pos, 11) then
default.grow_new_aspen_tree(pos)
+
+ elseif node.name == "default:bush_sapling" then
+ default.grow_bush(pos)
+ elseif node.name == "default:acacia_bush_sapling" then
+ default.grow_acacia_bush(pos)
end
return
|