forked from mtcontrib/plantlife_modpack
fix broken leafdecay on apple blossoms
This commit is contained in:
parent
c43375ff7a
commit
eaa716df76
|
@ -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,
|
||||
|
|
|
@ -9,14 +9,20 @@ nature = {}
|
|||
nature.blossomqueue = {}
|
||||
nature.blossomqueue_max = 1000
|
||||
|
||||
nature.blossom_decay = 2
|
||||
nature.blossom_trunk = "default:tree"
|
||||
nature.blossom_node = "nature:blossom"
|
||||
nature.blossom_leaves = "default:leaves"
|
||||
nature.blossom_textures = { "default_leaves.png^nature_blossom.png" }
|
||||
nature.blossom_groups = { snappy = 3, leafdecay = 1, leaves = 1, flammable = 2 }
|
||||
|
||||
if minetest.get_modpath("moretrees") then
|
||||
nature.blossom_decay = moretrees.leafdecay_radius
|
||||
nature.blossom_trunk = "moretrees:apple_tree_trunk"
|
||||
nature.blossom_node = "moretrees:apple_blossoms"
|
||||
nature.blossom_leaves = "moretrees:apple_tree_leaves"
|
||||
nature.blossom_textures = { "moretrees_apple_tree_leaves.png^nature_blossom.png" }
|
||||
nature.blossom_groups = { snappy = 3, leafdecay = 1, leaves = 1, flammable = 2, moretrees_leaves = 1 },
|
||||
minetest.register_alias("nature:blossom", "default:leaves")
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user