broken recipe (simple fix)
superblast1 opened this issue ยท 3 comments
Describe the bug
A clear and concise description of what the bug is.
there is a broken recipe when using tinkers construct
To Reproduce
Steps to reproduce the behavior:
load up tinkers construct and create crafts and additions
try the create mod mixer crafting for pig iron ingot from tinkers construct
(there's a broken tag) i believe that you just need to remove the "/blood"
Additional context
- Mod version:1.3.1
- Forge version:47.4.0 / 47.3.0
- Create version:
Yepp, that tag was removed.
In the meantime i figured this out (forgot to post here an update).
This is what i added as an override in my custom datapack:
data/createaddition/recipes/compat/tconstruct/pig_iron.json
{
"type": "create:mixing",
"ingredients": [
{
"tag": "forge:ingots/iron"
},
{
"fluid": "tconstruct:meat_soup",
"amount": 250
},
{
"item": "minecraft:clay_ball"
}
],
"results": [
{
"item": "tconstruct:pig_iron_ingot",
"count": 2
}
],
"heatRequirement": "heated",
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "tconstruct"
}
]
}data/createaddition/recipes/compat/tconstruct/pig_iron_2.json
{
"type": "create:mixing",
"ingredients": [
{
"tag": "forge:ingots/iron"
},
{
"tag": "forge:ingots/iron"
},
{
"tag": "forge:ingots/iron"
},
{
"tag": "forge:ingots/iron"
},
{
"fluid": "tconstruct:meat_soup",
"amount": 250
},
{
"item": "minecraft:honey_block"
}
],
"results": [
{
"item": "tconstruct:pig_iron_ingot",
"count": 8
}
],
"heatRequirement": "heated",
"conditions": [
{
"type": "forge:mod_loaded",
"modid": "tconstruct"
}
]
}Can confirm this, the tag forge:slimeball/blood does not exists.
I tried to fix this in a datapack overriding the recipe to use tconstruct:meat_soup instead like the original but that was not working either.
