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(-) 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