Hello guys, is there a way to display more than one item output in JEI using Sequenced Assembly?
I am doing a salvaging Circuit Scrap recipe, where each Circuit Scrap has a chance to become an AE2 Press.
It's already functional, but when I use r for presses that aren't the first one defined, they don't display the same recipe.
let circuitScrap = 'kubejs:circuit_scrap'
event.recipes.createSequencedAssembly([
Item.of('ae2:silicon_press').withChance(2.0),
Item.of('ae2:engineering_processor_press').withChance(2.0),
Item.of('ae2:logic_processor_press').withChance(2.0),
Item.of('ae2:calculation_processor_press').withChance(2.0),
Item.of('9x kubejs:tiny_circuit_scrap').withChance(8.0),
Item.of('4x kubejs:tiny_circuit_scrap').withChance(10.0),
Item.of('2x kubejs:tiny_circuit_scrap').withChance(10.0)
],'kubejs:circuit_scrap', [
event.recipes.createPressing(circuitScrap, circuitScrap)
]).transitionalItem(circuitScrap).loops(32)