aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com
diff options
context:
space:
mode:
authorMartin Robertz <dream-master@gmx.net>2022-02-25 22:37:02 +0100
committerMartin Robertz <dream-master@gmx.net>2022-02-25 22:37:02 +0100
commitcb2e4b6138b6d042e8299355189188375e9c62b3 (patch)
treefab3605928b26b5df7fefcad49907cd598b19308 /src/main/java/com
parentab106325e263e31c1481f1c712ed005af98850cb (diff)
downloadGT5-Unofficial-cb2e4b6138b6d042e8299355189188375e9c62b3.tar.gz
GT5-Unofficial-cb2e4b6138b6d042e8299355189188375e9c62b3.tar.bz2
GT5-Unofficial-cb2e4b6138b6d042e8299355189188375e9c62b3.zip
change control circuit settings
Diffstat (limited to 'src/main/java/com')
-rw-r--r--src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java4
1 files changed, 2 insertions, 2 deletions
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);