How do i use bowls in custom recipes? #964
-
So I'm making an addon, and one item i want to be served in a bowl when made in a cooking pot. I haven't found anything online and ChatGPT just keeps making stuff up. If more info is needed, please ask :) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can follow this page from our wiki: As you're making an add-on, I imagine you have created the item in your output. In that case, you could set its crafting remainder as a bowl on the item properties, and the Cooking Pot will use it by default. For example: Alternatively, for cooking recipes, you can define the
|
Beta Was this translation helpful? Give feedback.
You can follow this page from our wiki:
https://github.com/vectorwing/FarmersDelight/wiki/Cooking-Pot-Recipes
As you're making an add-on, I imagine you have created the item in your output. In that case, you could set its crafting remainder as a bowl on the item properties, and the Cooking Pot will use it by default. For example:
new Item.Properties().craftRemainder(Items.BOWL);
Alternatively, for cooking recipes, you can define the
container
field, which will tell the Cooking Pot to treat this item as the serving container. This is used in vanilla soups and Stuffed Pumpkin, for example. However, it won't make the meal give that item back; it will only be required to collect a serving fro…