diff options
author | Martin Robertz <dream-master@gmx.net> | 2022-02-25 21:58:06 +0100 |
---|---|---|
committer | Martin Robertz <dream-master@gmx.net> | 2022-02-25 21:58:06 +0100 |
commit | ab106325e263e31c1481f1c712ed005af98850cb (patch) | |
tree | b65266e471e77c997b3c1a63844a16ba60c7261f /src | |
parent | 7f77816ded64393458c9fc8399007f684f5a83ad (diff) | |
download | GT5-Unofficial-ab106325e263e31c1481f1c712ed005af98850cb.tar.gz GT5-Unofficial-ab106325e263e31c1481f1c712ed005af98850cb.tar.bz2 GT5-Unofficial-ab106325e263e31c1481f1c712ed005af98850cb.zip |
use max control circuit range
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/com/github/technus/tectech/loader/recipe/BaseRecipeLoader.java | 2 |
1 files changed, 1 insertions, 1 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 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), |