Fix weird attach behavior of apples

This commit is contained in:
Wuzzy 2019-09-16 23:57:58 +02:00
parent c97c1a9a0e
commit 30fe7a35d0
1 changed files with 1 additions and 1 deletions

View File

@ -1098,7 +1098,7 @@ minetest.register_node(
sunlight_propagates = true,
walkable = false,
floodable = true,
groups = {fleshy = 3, dig_immediate = 2, leafdecay = 3, leafdecay_drop = 1, attached_node = 1, food = 2},
groups = {fleshy = 3, dig_immediate = 2, leafdecay = 3, leafdecay_drop = 1, food = 2},
on_use = minetest.item_eat({hp = 2, sat = 10}),
sounds = default.node_sound_defaults(),
})