diff options
author | Martin Robertz <dream-master@gmx.net> | 2022-02-26 09:38:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-26 09:38:22 +0100 |
commit | 4e2f7ba8240918b8e9e73d0bd4b62f21c703f797 (patch) | |
tree | 823bb17ae6b92b9bcf3cae1336e660c7363800cd | |
parent | cb548848875dbaa5aeed1761d28782912bebe47d (diff) | |
parent | 290d94534c35bd8929a597385f1c1af2ba573d03 (diff) | |
download | GT5-Unofficial-4e2f7ba8240918b8e9e73d0bd4b62f21c703f797.tar.gz GT5-Unofficial-4e2f7ba8240918b8e9e73d0bd4b62f21c703f797.tar.bz2 GT5-Unofficial-4e2f7ba8240918b8e9e73d0bd4b62f21c703f797.zip |
Merge pull request #42 from GTNewHorizons/circuit0-fix
Circuit0 fix
-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..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 @@ -45,7 +45,7 @@ public class BaseRecipeLoader { // =================================================================================================== for(int i=0;i<=15;i++) { - RA.addAssemblerRecipe(new ItemStack[]{GT_Utility.getIntegratedCircuit(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); |