If you want to create a minecraft:furnace_recipe in an add-on it isn't possible to just make it work for either campfires or soul campfires because the tag "campfire" controls both.
For example the following recipe doesn't work at all:
{
"format_version": "1.12.0",
"minecraft:recipe_furnace": {
"description": {
"identifier": "addon:my_recipe"
},
"tags": [
"soul_campfire",
],
"input": {
"item": "minecraft:soul_sand",
"count": 4
},
"output": "addon:my_item"
}
}
And this would make the recipe work for both soul campfires and campfires:
{
"format_version": "1.12.0",
"minecraft:recipe_furnace": {
"description": {
"identifier": "addon:my_recipe"
},
"tags": [
"campfire",
],
"input": {
"item": "minecraft:soul_sand",
"count": 4
},
"output": "addon:my_item"
}
}
Which makes it impossible to make a recipe for only campfires or soul campfires.
The tag "soul_campfire" should work since it's used in the official documentation.
If you need further information I'm willing to give.
Edit:
Here's the copied example from the documentation:
{
"format_version": "1.12",
"minecraft:recipe_furnace": {
"description": {
"identifier": "minecraft:furnace_beef"
},
"tags": ["furnace", "smoker", "campfire", "soul_campfire"],
"input": {
"item": "minecraft:beef",
"data": 0,
"count": 4
},
"output ": "minecraft:cooked_beef"
}
}
Attachments
Comments 4
Cleaning up old tickets: This ticket had been set to 'Awaiting Response', but has not received a response from the reporter (~3 months+) so is being closed as Incomplete. If you feel this is still a valid issue then please comment, or create a new ticket following the Issue Guidelines which includes steps to reproduce the problem.
Quick Links:
📓 Issue Guidelines – 💬 Mojang Support – 📧 Suggestions – 📖 Minecraft Wiki
Also in 1.16.40 Hotfix and on Android.
May be related to MCPE-98305.