Curving press not working in sequenced assembly
hyperbaton opened this issue ยท 0 comments
I'm developing the integration of TerraFirmaCraft glassworking via Create machinery for my modpack, and it seems the curving press can't be integrated into a sequenced assembly.
This is the KubeJS script for this recipe:
event.recipes.create.sequenced_assembly([
Item.of('butcher:jar', 1)
], 'tfc:silica_glass_batch', [ // input
event.recipes.vintageimprovements.turning('tfc:silica_glass_batch', 'tfc:silica_glass_batch'),
event.recipes.create.pressing('tfc:silica_glass_batch', 'tfc:silica_glass_batch'),
event.recipes.vintageimprovements.curving('tfc:silica_glass_batch', 'tfc:silica_glass_batch').head('vintageimprovements:convex_curving_head'),
event.recipes.create.cutting('tfc:silica_glass_batch', 'tfc:silica_glass_batch')
]).transitionalItem('tfc:silica_glass_batch').loops(1)
But it gets stuck in the curving step. It even creates the proper tag into the object, as seen here:
But the curving press just doesn't process it. I'm not sure if my script is somehow wrong or if the curving press just isn't supposed to be used in sequenced assembly.