diff options
author | TenPlus1 <kinsellaja@yahoo.com> | 2015-08-31 17:40:29 +0100 |
---|---|---|
committer | TenPlus1 <kinsellaja@yahoo.com> | 2015-08-31 17:40:29 +0100 |
commit | 39938949b04ea1c58f016143956b58687ec74b1d (patch) | |
tree | a96bd119382aa144a0411bc751ce3af946c0d851 /sapling.lua | |
parent | 1bcdfc56fd37065f664dc193d5e910b5bbd99a84 (diff) |
Changed Bamboo biome, added bamboo tree, bush, tidied code
Diffstat (limited to 'sapling.lua')
-rw-r--r-- | sapling.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sapling.lua b/sapling.lua index 644a141..a51bd46 100644 --- a/sapling.lua +++ b/sapling.lua @@ -115,6 +115,10 @@ ethereal.grow_sapling = function (pos, node) elseif node.name == "ethereal:acacia_sapling" and under == "default:desert_sand" then ethereal.add_tree(pos, 5, 5, path .. "acaciatree.mts") + + elseif node.name == "ethereal:bamboo_sprout" + and under == "ethereal:bamboo_dirt" then + ethereal.add_tree(pos, 1, 1, ethereal.bambootree) end end |