Update 'mods/ethereal/leaves.lua'

This commit is contained in:
thunderdog1138 2020-05-05 03:11:28 +00:00
parent a7b09b27ab
commit a0585184f0
1 changed files with 15 additions and 0 deletions

View File

@ -187,6 +187,21 @@ minetest.register_craft({
burntime = 3,
})
-- bush
minetest.register_node("ethereal:bush", {
description = S("Bush"),
tiles = {"ethereal_bush.png"},
walkable = true,
groups = {snappy = 3, flammable = 2},
sounds = default.node_sound_leaves_defaults(),
})
minetest.register_craft({
type = "fuel",
recipe = "ethereal:bush",
burntime = 1,
})
-- compatibility check for new mt version with leafdecay function
if minetest.registered_nodes["default:dirt_with_rainforest_litter"] then