From 56a630e679108bfe1e8f3a153b3437a12d1ecebc Mon Sep 17 00:00:00 2001 From: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> Date: Mon, 20 Jan 2025 21:43:29 +0000 Subject: [PATCH 1/5] Incorrect comment label Signed-off-by: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> --- kubejs/server_scripts/tfc/recipes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index 882dc1989..02ed78add 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -3453,7 +3453,7 @@ const registerTFCRecipes = (event) => { .duration(100) .EUt(4) - // Silk Cloth + // Wool Cloth event.recipes.gtceu.assembler('tfg:tfc/wool_cloth') .itemInputs('16x tfc:wool_yarn') .itemOutputs('tfc:wool_cloth') From 2064d07334b26c84a3d8c093767c7cd7317b87e7 Mon Sep 17 00:00:00 2001 From: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> Date: Mon, 20 Jan 2025 22:02:28 +0000 Subject: [PATCH 2/5] Assembler wool from string consistency Signed-off-by: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> --- kubejs/server_scripts/minecraft/recipes.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kubejs/server_scripts/minecraft/recipes.js b/kubejs/server_scripts/minecraft/recipes.js index dad20c8a7..ac091f9c6 100644 --- a/kubejs/server_scripts/minecraft/recipes.js +++ b/kubejs/server_scripts/minecraft/recipes.js @@ -2917,7 +2917,7 @@ const registerMinecraftRecipes = (event) => { //#region Выход: Шерсть event.recipes.gtceu.assembler('wool_from_string') - .itemInputs('4x #forge:string') + .itemInputs('8x #forge:string') .circuit(4) .itemOutputs('minecraft:white_wool') .duration(100) 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 3/5] 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) From 1e8f089259d21947c7b0669ce067c5bebea830e5 Mon Sep 17 00:00:00 2001 From: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> Date: Mon, 20 Jan 2025 22:10:18 +0000 Subject: [PATCH 4/5] Assembler recipe to turn cloth into wool Signed-off-by: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> --- kubejs/server_scripts/tfc/recipes.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index eb29bc0f7..c654d65d2 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -3462,6 +3462,13 @@ const registerTFCRecipes = (event) => { .itemOutputs('tfc:wool_cloth') .duration(100) .EUt(4) + + // Cloths to Wool + event.recipes.gtceu.assembler('tfg:tfc/cloth_to_wool') + .itemInputs('4x #tfc:sewing_light_cloth') + .itemOutputs('8x minecraft:white_wool') + .duration(100) + .EUt(4) // Jute Fiber generateMixerRecipe(event, 'tfc:jute', Fluid.of('minecraft:water', 200), 'tfc:jute_fiber', null, [], 100, 4, 16, 'tfg:tfc/jute_fiber') From ed7d9c854a0909ce749f849c59d50d22248fe37a Mon Sep 17 00:00:00 2001 From: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> Date: Mon, 20 Jan 2025 23:16:01 +0000 Subject: [PATCH 5/5] Added circuit 0 to new cloth to wool recipe Signed-off-by: Deneth Weerasinghe <11477150+deneth-weerasinghe@users.noreply.github.com> --- kubejs/server_scripts/tfc/recipes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/kubejs/server_scripts/tfc/recipes.js b/kubejs/server_scripts/tfc/recipes.js index c654d65d2..df3aa74ef 100644 --- a/kubejs/server_scripts/tfc/recipes.js +++ b/kubejs/server_scripts/tfc/recipes.js @@ -3466,6 +3466,7 @@ const registerTFCRecipes = (event) => { // Cloths to Wool event.recipes.gtceu.assembler('tfg:tfc/cloth_to_wool') .itemInputs('4x #tfc:sewing_light_cloth') + .circuit(0) .itemOutputs('8x minecraft:white_wool') .duration(100) .EUt(4)