For some reason, every recipe loads properly besides this set of recipes, which only works after a reload:
// Iron chest recipe buff
event.replaceInput({ mod: 'ironchest' }, 'minecraft:copper_ingot', 'minecraft:copper_block');
event.replaceInput({ mod: 'ironchest' }, 'minecraft:iron_ingot', 'minecraft:iron_block');
event.replaceInput({ mod: 'ironchest' }, 'minecraft:gold_ingot', 'minecraft:gold_block');
event.replaceInput({ mod: 'ironchest' }, 'minecraft:diamond', 'minecraft:diamond_block');
event.replaceInput({ mod: 'ironchest' }, 'minecraft:obsidian', 'minecraft:obsidian');
Is this something that needs higher priority? What's the right way to fix this?