I'm not sure what I'm doing wrong but I am trying to combine copper and nickel in an Immersive Engineering arc furnace to get osmium. I am attempting to do a custom recipe because the Immersive Engineering support mod has not updated to 1.20.1. Any suggestions?
ServerEvents.recipes(event =>{
event.custom({
type:'immersiveengineeringArcFurnace',
Ingredients: [
Ingredient.of('immersiveengineering:ingot_nickel').toJson(),
Ingredient.of('minecraft:copper_ingot').toJson()
],
results: [
Item.of('mekanism:ingot_osmium').toResultJson()
],
})})

