change stack_max of bowls of soup, add nettles/eyes as food items

master
Caleb 2021-02-04 15:44:10 -07:00 committed by CalebJ
parent 5b95d9547e
commit 9535cab98c
1 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,8 @@ local cauldron, sounds = {}, {}
local ingredients_list = {
"apple", "mushroom", "honey", "pumpkin", "egg", "bread", "meat",
"chicken", "carrot", "potato", "melon", "rhubarb", "cucumber",
"corn", "beans", "berries", "grapes", "tomato", "wheat"
"corn", "beans", "berries", "grapes", "tomato", "wheat",
"nettle:nettle", "eye",
}
cauldron.cbox = {
@ -238,8 +239,7 @@ minetest.register_craftitem("xdecor:bowl_soup", {
description = "Bowl of soup",
inventory_image = "xdecor_bowl_soup.png",
wield_image = "xdecor_bowl_soup.png",
groups = {not_in_creative_inventory=1},
stack_max = 1,
stack_max = 10,
on_use = minetest.item_eat(30, "xdecor:bowl")
})