Skip to content

[1.21.1] Resonating Ore -> Resonating Plate smelting recipe does not work #326

Description

@SystemNeoSpl

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);
    });
});

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions