Started by
Paolemius
on
Topic category: Troubleshooting, bugs, and solutions
I found this issue creating a datapack.
When you create a recipe for smelting / blasting / smoking, you get this code:
{
"group": "stuff",
"type": "minecraft:smelting",
"experience": 1,
"cookingtime": 200,
"ingredient": {
"item": "minecraft:slime_block"
},
"result": {
"item": "minecraft:red_mushroom_block"
}
}
it seems to me that the "RESULT" block is not working. You need to edit into:
{
"group": "stuff",
"type": "minecraft:smelting",
"experience": 1,
"cookingtime": 200,
"ingredient": {
"item": "minecraft:slime_block"
},
"result": "minecraft:red_mushroom_block"
}
Did you lock the code after changing the result?
Other thing that can help is editing it manually like this:
{
"group": "stuff",
"type": "minecraft:smelting",
"experience": 1,
"cookingtime": 200,
"ingredient": {
"item": "minecraft:slime_block"
},
"result": {
"item": "minecraft:ITEM_NAME"
}
}