[1.14.4] [0.14-95] Sheetmetal recipes do not accept OreDictionary plates from other mods
vectorwing opened this issue ยท 0 comments
Description of the issue:
The recipes for all Sheetmetal blocks are not accepting OreDictionary plates. They can only be crafted with the corresponding IE plate item.
Other IE items that use plates seem to be using the proper tag for their recipes.
Here's the Iron Sheetmetal recipe JSON:
{
"type": "minecraft:crafting_shaped",
"pattern": [
" p ",
"p p",
" p "
],
"key": {
"p": {
"item": "immersiveengineering:plate_iron"
}
},
"result": {
"item": "immersiveengineering:sheetmetal_iron",
"count": 4
}
}
Here's the Fluid Pipe recipe (accepts forge plates) for comparison:
{
"type": "minecraft:crafting_shaped",
"pattern": [
"ppp",
" ",
"ppp"
],
"key": {
"p": {
"tag": "forge:plates/iron"
}
},
"result": {
"item": "immersiveengineering:fluid_pipe",
"count": 8
}
}
Versions & Modlist
Forge-28.2.3
ImmersiveEngineering-0.14-95
jei-1.14.4-6.0.0.27
create-mc1.14.4_v0.2.3 (adds iron and copper plates)