From 7f77816ded64393458c9fc8399007f684f5a83ad Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Fri, 25 Feb 2022 21:42:00 +0100 Subject: fix hint using circuit 0 Change recipes using Circuit 0 in their recipes #9818 Change recipes using Circuit 0 in their recipes GT-New-Horizons-Modpack#9818 --- .../java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java index 20f58b739b..a51669d57f 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java @@ -44,7 +44,7 @@ public class BaseRecipeLoader { // Recipes init - common goes here rest goes into methods below // =================================================================================================== - for(int i=0;i<=15;i++) { + for(int i=1;i<=16;i++) { RA.addAssemblerRecipe(new ItemStack[]{GT_Utility.getIntegratedCircuit(i), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cobalt, 1)}, Materials.Aluminium.getMolten(864), -- cgit From ab106325e263e31c1481f1c712ed005af98850cb Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Fri, 25 Feb 2022 21:58:06 +0100 Subject: use max control circuit range --- .../java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java index a51669d57f..db268b08c9 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java @@ -44,7 +44,7 @@ public class BaseRecipeLoader { // Recipes init - common goes here rest goes into methods below // =================================================================================================== - for(int i=1;i<=16;i++) { + for(int i=1;i<=24;i++) { RA.addAssemblerRecipe(new ItemStack[]{GT_Utility.getIntegratedCircuit(i), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cobalt, 1)}, Materials.Aluminium.getMolten(864), -- cgit From cb2e4b6138b6d042e8299355189188375e9c62b3 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Fri, 25 Feb 2022 22:37:02 +0100 Subject: change control circuit settings --- .../com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java index db268b08c9..a38fe567c2 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java @@ -44,8 +44,8 @@ public class BaseRecipeLoader { // Recipes init - common goes here rest goes into methods below // =================================================================================================== - for(int i=1;i<=24;i++) { - RA.addAssemblerRecipe(new ItemStack[]{GT_Utility.getIntegratedCircuit(i), + for(int i=0;i<=16;i++) { + RA.addAssemblerRecipe(new ItemStack[]{GT_Utility.getIntegratedCircuit(i+1), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cobalt, 1)}, Materials.Aluminium.getMolten(864), new ItemStack(StructureLibAPI.getBlockHint(), 1, i), 32, 120); -- cgit From 290d94534c35bd8929a597385f1c1af2ba573d03 Mon Sep 17 00:00:00 2001 From: Martin Robertz Date: Fri, 25 Feb 2022 22:48:20 +0100 Subject: change back to 15 --- .../java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/com') diff --git a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java index a38fe567c2..23bf1d308e 100644 --- a/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java +++ b/src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java @@ -44,7 +44,7 @@ public class BaseRecipeLoader { // Recipes init - common goes here rest goes into methods below // =================================================================================================== - for(int i=0;i<=16;i++) { + for(int i=0;i<=15;i++) { RA.addAssemblerRecipe(new ItemStack[]{GT_Utility.getIntegratedCircuit(i+1), GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cobalt, 1)}, Materials.Aluminium.getMolten(864), -- cgit