diff options
author | Dream-Master <dream-master@gmx.net> | 2017-07-02 14:17:32 +0200 |
---|---|---|
committer | Dream-Master <dream-master@gmx.net> | 2017-07-02 14:17:32 +0200 |
commit | f5f0897f022f83dc6c8d4e2b5a09cb96e2d2ce64 (patch) | |
tree | d71189cc994d2f501ca0535531946b287ea36140 /src/main | |
parent | 614754f307ee72c87f5b5fa5865e72bfc07afcbb (diff) | |
download | GT5-Unofficial-f5f0897f022f83dc6c8d4e2b5a09cb96e2d2ce64.tar.gz GT5-Unofficial-f5f0897f022f83dc6c8d4e2b5a09cb96e2d2ce64.tar.bz2 GT5-Unofficial-f5f0897f022f83dc6c8d4e2b5a09cb96e2d2ce64.zip |
fix circuits
try to fix chemical reactor need cleanroom again
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java | 3 | ||||
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingCircuit.java | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java index 0cbeae6be2..4afda08034 100644 --- a/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java +++ b/src/main/java/gregtech/api/interfaces/internal/IGT_RecipeAdder.java @@ -183,6 +183,9 @@ public interface IGT_RecipeAdder { public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, ItemStack aOutput2, int aDuration, int aEUtick, boolean aClenroom); + + public boolean addChemicalRecipe(ItemStack aInput1, ItemStack aInput2, FluidStack aFluidInput, FluidStack aFluidOutput, ItemStack aOutput, ItemStack aOutput2, int aDuration, int aEUtick, boolean aClenroom, boolean aBasicOnly); + /** * Adds a Chemical Recipe that only exists in the Large Chemical Reactor * diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCircuit.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCircuit.java index f28aca2b40..e64312a7f2 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCircuit.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCircuit.java @@ -28,7 +28,7 @@ public class ProcessingCircuit implements gregtech.api.interfaces.IOreRecipeRegi break; case "Basic": GT_ModHandler.removeRecipeByOutput(aStack); - GT_ModHandler.addCraftingRecipe(aStack, new Object[]{"RIR","VBV","CCC",'R',ItemList.Circuit_Parts_Resistor.get(1,new Object[0]),'C',GT_OreDictUnificator.get(OrePrefixes.cableGt01, Materials.RedAlloy, 1),'V', ItemList.Circuit_Parts_Vacuum_Tube.get(1,new Object[0]),'B',ItemList.Circuit_Board_Coated_Basic.get(1,new Object[0]),'I',ItemList.IC2_Item_Casing_Steel.get(1,new Object[0])}); + GT_ModHandler.addCraftingRecipe(aStack, new Object[]{"RIR","VBV","CCC",'R',ItemList.Circuit_Parts_Resistor.get(1,new Object[0]),'C',GT_OreDictUnificator.get(OrePrefixes.wireGt01, Materials.RedAlloy, 1),'V', ItemList.Circuit_Parts_Vacuum_Tube.get(1,new Object[0]),'B',ItemList.Circuit_Board_Coated_Basic.get(1,new Object[0]),'I',ItemList.IC2_Item_Casing_Steel.get(1,new Object[0])}); GT_ModHandler.addShapelessCraftingRecipe(GT_ModHandler.getIC2Item("electronicCircuit", 1L), new Object[]{ItemList.Circuit_Integrated.getWildcard(1L, new Object[0])}); break; case "Advanced": |