add recipe for big tree sapling

This commit is contained in:
TenPlus1 2018-06-07 09:37:19 +01:00
parent b4f734d8cb
commit 4641fecbe9

View File

@ -17,6 +17,12 @@ minetest.override_item("default:leaves", {
walkable = ethereal.leafwalk,
})
-- ability to craft big tree sapling
minetest.register_craft({
recipe = {{"default:sapling", "default:sapling", "default:sapling"}},
output = "ethereal:big_tree_sapling"
})
-- default jungle tree leaves
minetest.override_item("default:jungleleaves", {
drawtype = leaftype,