Fix incorrect/missing saturation points

This commit is contained in:
Wuzzy 2017-05-21 03:26:51 +02:00
parent 888e4cae34
commit 579a6ed6f3
5 changed files with 8 additions and 7 deletions

View file

@ -100,12 +100,12 @@ minetest.register_craftitem("mcl_farming:potato_item", {
minetest.register_craftitem("mcl_farming:potato_item_baked", {
description = "Baked Potato",
_doc_items_longdesc = "Baked potatoes are food items which can be eaten for 6 hunger points.",
_doc_items_longdesc = "Baked potatoes are food items which can be eaten for 5 hunger points.",
stack_max = 64,
inventory_image = "farming_potato_baked.png",
on_place = minetest.item_eat(6),
on_secondary_use = minetest.item_eat(6),
groups = { food = 2, eatable = 6 },
on_place = minetest.item_eat(5),
on_secondary_use = minetest.item_eat(5),
groups = { food = 2, eatable = 5 },
_mcl_saturation = 6.0,
})