From f8b30b19983be2f0749bac6131aea09f18779f26 Mon Sep 17 00:00:00 2001 From: CubeBotFan <150861277+cubebotfan@users.noreply.github.com> Date: Tue, 18 Feb 2025 16:21:57 -0600 Subject: [PATCH 1/3] Fix iron/gold dupes and allow casting stone and enderio gears using brass and aluminium brass --- src/scripts/ct/TConstruct.zs | 25 +++++++++++++++++++++++++ src/scripts/ct/TE.zs | 14 ++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/src/scripts/ct/TConstruct.zs b/src/scripts/ct/TConstruct.zs index 29885288..06a15154 100644 --- a/src/scripts/ct/TConstruct.zs +++ b/src/scripts/ct/TConstruct.zs @@ -17,13 +17,38 @@ Melting.removeRecipe(, ); //Dupe bug Melting.removeRecipe(, ); Melting.removeRecipe(, ); +Melting.removeRecipe(, ); //craftable using iron alloy +Melting.removeRecipe(, ); //rolling machine dupes +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); +Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); + +//Force use of the induction smelter to smelt blends into ingots Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); +//Fix being unable to make gear casts using certain gears and brass or aluminium brass +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 288, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 288, true); +Casting.addTableRecipe(, , , 144, true); +Casting.addTableRecipe(, , , 144, true); + //Remove direct trait components as they do not respect actual block drops for item in scripts.ct.JEI.directs { Casting.removeTableRecipe(item); diff --git a/src/scripts/ct/TE.zs b/src/scripts/ct/TE.zs index 39847b01..ff0d3b7f 100644 --- a/src/scripts/ct/TE.zs +++ b/src/scripts/ct/TE.zs @@ -17,6 +17,20 @@ InductionSmelter.removeRecipe(, ); Pulverizer.removeRecipe(); +//Dupe Bug +InductionSmelter.removeRecipe(, ); //can be crafted using iron alloy +InductionSmelter.removeRecipe(, ); //the rest of these are rolling machine dupes +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +InductionSmelter.removeRecipe(, ); +Pulverizer.removeRecipe(); //add var coils = [, , ] as IItemStack[]; From 4931c461c89c80ccdf3ac259718d86d3d7d76c1d Mon Sep 17 00:00:00 2001 From: CubeBotFan <150861277+cubebotfan@users.noreply.github.com> Date: Fri, 2 May 2025 13:50:23 -0500 Subject: [PATCH 2/3] Fix typo and remove ironchest melting --- src/scripts/ct/TConstruct.zs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/scripts/ct/TConstruct.zs b/src/scripts/ct/TConstruct.zs index 06a15154..69927026 100644 --- a/src/scripts/ct/TConstruct.zs +++ b/src/scripts/ct/TConstruct.zs @@ -19,7 +19,7 @@ Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); //craftable using iron alloy Melting.removeRecipe(, ); //rolling machine dupes -Melting.removeRecipe(, ); +Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); @@ -27,6 +27,7 @@ Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); +Melting.removeRecipe(, ); //Force use of the induction smelter to smelt blends into ingots Melting.removeRecipe(, ); From bd79b732d640c1f05c1c354e860a96e2042fd5fa Mon Sep 17 00:00:00 2001 From: CubeBotFan <150861277+cubebotfan@users.noreply.github.com> Date: Fri, 2 May 2025 13:55:21 -0500 Subject: [PATCH 3/3] Remove wood to iron chest upgrade melting --- src/scripts/ct/TConstruct.zs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scripts/ct/TConstruct.zs b/src/scripts/ct/TConstruct.zs index 69927026..aaa82d1f 100644 --- a/src/scripts/ct/TConstruct.zs +++ b/src/scripts/ct/TConstruct.zs @@ -28,6 +28,7 @@ Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); Melting.removeRecipe(, ); +Melting.removeRecipe(, ); //Force use of the induction smelter to smelt blends into ingots Melting.removeRecipe(, );