Let apples fall when the tree is decaying

This commit is contained in:
PilzAdam
2013-05-21 16:44:39 +02:00
parent c1cd24c378
commit 0dd813b5f8
2 changed files with 11 additions and 2 deletions

View File

@ -1124,9 +1124,14 @@ minetest.register_node("default:apple", {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2}
},
groups = {fleshy=3,dig_immediate=3,flammable=2},
groups = {fleshy=3,dig_immediate=3,flammable=2,leafdecay=1,leafdecay_drop=1},
on_use = minetest.item_eat(4),
sounds = default.node_sound_defaults(),
after_place_node = function(pos, placer, itemstack)
if placer:is_player() then
minetest.env:set_node(pos, {name="default:apple", param2=1})
end
end,
})
minetest.register_node("default:dry_shrub", {