What it says on the tin: putting any form of Resonating Ore into a furnace will fail to smelt it into plates.
Tested in a clean Prism Launcher instance, on version 1.21-6.0.1 of the mod.
For anyone encountering the issue as well, I whipped up a quick KubeJS script that re-implements them:
ServerEvents.recipes(event => {
const resonatingOreTypes = [ 'stone', 'deepslate', 'nether', 'end' ];
resonatingOreTypes.forEach(oreType => {
event.smelting('8x deepresonance:resonating_plate', `deepresonance:resonating_ore_${oreType}`)
.xp(0.4)
.cookingTime(200);
event.blasting('8x deepresonance:resonating_plate', `deepresonance:resonating_ore_${oreType}`)
.xp(0.4)
.cookingTime(200);
});
});
What it says on the tin: putting any form of Resonating Ore into a furnace will fail to smelt it into plates.
Tested in a clean Prism Launcher instance, on version 1.21-6.0.1 of the mod.
For anyone encountering the issue as well, I whipped up a quick KubeJS script that re-implements them: