1
0
mirror of https://github.com/mt-mods/plantlife_modpack.git synced 2025-07-17 15:20:30 +02:00

fix broken leafdecay on apple blossoms

This commit is contained in:
Vanessa Ezekowitz
2017-03-30 18:29:24 -04:00
parent c43375ff7a
commit eaa716df76
2 changed files with 13 additions and 1 deletions

View File

@ -16,11 +16,17 @@ minetest.register_node(":"..nature.blossom_node, {
drawtype = "allfaces_optional",
tiles = nature.blossom_textures,
paramtype = "light",
groups = { snappy = 3, leafdecay = 3, flammable = 2, leafdecay = 3 },
groups = nature.blossom_groups,
sounds = default.node_sound_leaves_defaults(),
waving = 1
})
default.register_leafdecay({
trunks = { nature.blossom_trunk },
leaves = { nature.blossom_node },
radius = nature.blossom_decay,
})
minetest.register_craft({
type = "fuel",
recipe = nature.blossom_node,