From ebf637d480f8deedce2a450a9f64e9c5ba0c87c5 Mon Sep 17 00:00:00 2001 From: thunderdog1138 Date: Tue, 19 May 2020 17:40:25 +0000 Subject: [PATCH] Update 'mods/ethereal/leaves.lua' --- mods/ethereal/leaves.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mods/ethereal/leaves.lua b/mods/ethereal/leaves.lua index fa5c966e..8c636c17 100644 --- a/mods/ethereal/leaves.lua +++ b/mods/ethereal/leaves.lua @@ -231,16 +231,16 @@ minetest.register_craft({ }) -- hedge block -minetest.register_node("ethereal:bush", { - description = S("Bush"), - tiles = {"ethereal_bush.png"}, +minetest.register_node("ethereal:bamboo_bush", { + description = S("Bamboo Bush"), + tiles = {"bamboo_bush.png"}, walkable = true, groups = {snappy = 3, flammable = 2}, sounds = default.node_sound_leaves_defaults(), }) minetest.register_craft({ - output = "ethereal:bush", + output = "ethereal:bamboo_bush", recipe = { {"group:leaves", "group:leaves", "group:leaves"}, {"group:leaves", "ethereal:bamboo_leaves", "group:leaves"}, @@ -250,7 +250,7 @@ minetest.register_craft({ minetest.register_craft({ type = "fuel", - recipe = "ethereal:bush", + recipe = "ethereal:bamboo_bush", burntime = 1, })