I want to make a recipe for every ingot with a hot variant to turn it into it's normal variant, how do i do this? Preferably without having to make every recipe individually.
thinking either if there's a way to take all items with 'modularmaterials:ingot_hot.' and take the id after the 'hot.' and put it in after 'modularmaterials:ingot.' or if i can make a list of every material with a hot ingot and normal ingot and execute the recipe for every material. The first one is way better though, since i'll want to make recipes for other material types too and if that works i can just copy-paste it for every material
onEvent('recipes', event => {
event.recipes.thermal.chiller('modularmaterials:ingot.*', 'modularmaterials:ingot_hot.*')
})


