3 Mods hinzugefügt, Fehlende Nahrungspunkteangaben im Inventar ergänzt, falsche Nahrungspunkte berichtigt
This commit is contained in:
parent
763ba03e6c
commit
23dda4593a
151 changed files with 6445 additions and 109 deletions
|
@ -4,7 +4,7 @@ if minetest.global_exists("farming") and farming.mod == "redo" then -- need pe
|
|||
minetest.register_craftitem("sandwiches:hamwich", {
|
||||
description = "Hamwich",
|
||||
on_use = minetest.item_eat(11, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 11},
|
||||
inventory_image = "hamwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
@ -21,7 +21,7 @@ end
|
|||
minetest.register_craftitem("sandwiches:jerky_sandwich", {
|
||||
description = "Jerky sandwich",
|
||||
on_use = minetest.item_eat(11, "sandwiches:bread_crumbs"),
|
||||
groups = {food_sandwich = 1},
|
||||
groups = {food_sandwich = 1, eatable = 11},
|
||||
inventory_image = "jerky_sandwich.png"
|
||||
})
|
||||
minetest.register_craft({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue