From 0aa0b22c69a4d4e736fb253c124f4bc50f59d8e5 Mon Sep 17 00:00:00 2001 From: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> Date: Mon, 20 Jan 2025 22:08:08 +0000 Subject: [PATCH] Set circuit 0 to assembler string to cloth recipes Signed-off-by: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> --- kubejs/server_scripts/tfc/recipes.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 02ed78add..eb29bc0f7 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -3442,20 +3442,23 @@ const registerTFCRecipes = (event) => { // Burlap Cloth event.recipes.gtceu.assembler('tfg:tfc/burlap_cloth') .itemInputs('12x tfc:jute_fiber') + .circuit(0) .itemOutputs('tfc:burlap_cloth') .duration(100) .EUt(4) // Silk Cloth - event.recipes.gtceu.assembler('tfg:tfc/silk_cloth') + event.recipes.gtceu.assembler('tfg:tfc/silk_cloth') .itemInputs('24x minecraft:string') + .circuit(0) .itemOutputs('tfc:silk_cloth') .duration(100) .EUt(4) // Wool Cloth - event.recipes.gtceu.assembler('tfg:tfc/wool_cloth') + event.recipes.gtceu.assembler('tfg:tfc/wool_cloth') .itemInputs('16x tfc:wool_yarn') + .circuit(0) .itemOutputs('tfc:wool_cloth') .duration(100) .EUt(4)