1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-28 12:46:02 +02:00

Apples give 2 HP instead of 1 HP, bread gives 5 HP instead of 4 HP

This commit is contained in:
Novatux
2015-05-14 17:33:10 +02:00
parent 300b14078f
commit 23a37e5e79
2 changed files with 2 additions and 2 deletions

View File

@ -464,7 +464,7 @@ minetest.register_node("default:apple", {
fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2}
},
groups = {fleshy=3,dig_immediate=3,flammable=2,leafdecay=3,leafdecay_drop=1},
on_use = minetest.item_eat(1),
on_use = minetest.item_eat(2),
sounds = default.node_sound_leaves_defaults(),
after_place_node = function(pos, placer, itemstack)