diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2017-07-27 15:34:38 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2017-07-27 15:34:38 +0100 |
commit | 7a619317cd1b5f50a57d6d4b4fb15fbd6285c36b (patch) | |
tree | 60b7e9d9577113b65b511b9c81ad5539e2548d41 /bonemeal.lua | |
parent | 6c8ea9e5ea8e6dce685b570028c0b9da53cf7e6c (diff) |
Tweaked crystal shovel, bonemeal grows bushes, added toolranks support
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
|