diff options
author | Martin Robertz <dream-master@gmx.net> | 2022-02-25 21:42:00 +0100 |
---|---|---|
committer | Martin Robertz <dream-master@gmx.net> | 2022-02-25 21:42:00 +0100 |
commit | 7f77816ded64393458c9fc8399007f684f5a83ad (patch) | |
tree | c1964290f72460c7143d3a8d31dde81f5b19718a | |
parent | cb548848875dbaa5aeed1761d28782912bebe47d (diff) | |
download | GT5-Unofficial-7f77816ded64393458c9fc8399007f684f5a83ad.tar.gz GT5-Unofficial-7f77816ded64393458c9fc8399007f684f5a83ad.tar.bz2 GT5-Unofficial-7f77816ded64393458c9fc8399007f684f5a83ad.zip |
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
-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 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), |