Code:
e.forEachRecipe({ type: 'thermal:press', input: '#forge:ingots', output: '#forge:plates' }, r => {
let ingredients = r.originalRecipeIngredients
let output = r.originalRecipeResult
e.recipes.create.pressing(output, ingredients[0])
})
Thermal Recipe Example:
{
"type": "thermal:press",
"ingredient": {
"tag": "forge:ingots/nickel"
},
"result": [
{
"item": "thermal:nickel_plate"
}
]
}
For some reason, the thermal series press recipes won't let me convert them to other recipes. And I mean, flat out won't create the recipe. I've tested the above code with stuff like #minecraft:planks for input, and #minecraft:slabs for output, and its worked fine, but oddly not with this. Maybe it could be because the input is a tag?