Skip to content

Commit

Permalink
Apples give 2 HP instead of 1 HP, bread gives 5 HP instead of 4 HP
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekdohibs committed May 14, 2015
1 parent 300b140 commit 23a37e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mods/default/nodes.lua
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion mods/farming/init.lua
Expand Up @@ -24,7 +24,7 @@ minetest.register_craftitem("farming:flour", {
minetest.register_craftitem("farming:bread", {
description = "Bread",
inventory_image = "farming_bread.png",
on_use = minetest.item_eat(4),
on_use = minetest.item_eat(5),
})

minetest.register_craft({
Expand Down

0 comments on commit 23a37e5

Please sign in to comment.