Update 'mods/default/food.lua'

This commit is contained in:
thunderdog1138 2020-05-17 22:03:34 +00:00
parent d810f47a31
commit 3c812572a2
1 changed files with 2 additions and 2 deletions

View File

@ -15,8 +15,8 @@ minetest.register_node("default:jogan_fruit", {
type = "fixed",
fixed = {-3 / 16, -7 / 16, -3 / 16, 3 / 16, 4 / 16, 3 / 16}
},
groups = {fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 3, leafdecay_drop = 1, food_apple = 1},
groups = {food_apple = 1, fleshy = 3, dig_immediate = 3, flammable = 2,
leafdecay = 3, leafdecay_drop = 1},
on_use = minetest.item_eat(2),
sounds = default.node_sound_leaves_defaults(),
})