In the data for minecraft:recipes there are 2 recipes for rabbit stew: 1 with a brown mushroom, and 1 with a red mushroom. It would be better practice and more user friendly to replace them with 1 single recipe that uses a tag for the mushroom.
Example:
minecraft/data/recipes/rabbit_stew
{
"type": "minecraft:crafting_shapeless",
"ingredients": [
{
"item": "minecraft:baked_potato"
},
{
"item": "minecraft:cooked_rabbit"
},
{
"item": "minecraft:bowl"
},
{
"item": "minecraft:carrot"
},
{
"tag": "minecraft:mushrooms"
}
],
"result": {
"item": "minecraft:rabbit_stew"
}
}
minecraft/data/tags/items/mushrooms
{
"values": [
"red_mushroom",
"brown_mushroom"
]
}
Please sign in to leave a comment.
0 Comments