diff options
author | Blood-Asp <bloodasphendrik@gmail.com> | 2016-10-02 21:39:42 +0200 |
---|---|---|
committer | Blood-Asp <bloodasphendrik@gmail.com> | 2016-10-02 21:39:42 +0200 |
commit | 92294c1f88884b817fee7cb21db30e469ff78844 (patch) | |
tree | afac798a5de465b608f86f60ed84ae627de054eb /src/main/java/gregtech/common/GT_RecipeAdder.java | |
parent | 811f2e971b566fe8d650c4bef8b23bd595ac6a60 (diff) | |
download | GT5-Unofficial-92294c1f88884b817fee7cb21db30e469ff78844.tar.gz GT5-Unofficial-92294c1f88884b817fee7cb21db30e469ff78844.tar.bz2 GT5-Unofficial-92294c1f88884b817fee7cb21db30e469ff78844.zip |
MT script parser + metaitem reenabler do now work
Diffstat (limited to 'src/main/java/gregtech/common/GT_RecipeAdder.java')
-rw-r--r-- | src/main/java/gregtech/common/GT_RecipeAdder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java index 99781534dc..88e459a97d 100644 --- a/src/main/java/gregtech/common/GT_RecipeAdder.java +++ b/src/main/java/gregtech/common/GT_RecipeAdder.java @@ -205,7 +205,7 @@ public class GT_RecipeAdder if ((aDuration = GregTech_API.sRecipeFile.get("assembling", aOutput1, aDuration)) <= 0) { return false; } - GT_Recipe.GT_Recipe_Map.sAssemblerRecipes.addRecipe(true, new ItemStack[]{aInput1, (ItemStack) (aInput2 == null ? new ItemStack[]{aInput1} : aInput2)}, new ItemStack[]{aOutput1}, null, new FluidStack[]{aFluidInput == null ? null : aFluidInput}, null, aDuration, aEUt, 0); + GT_Recipe.GT_Recipe_Map.sAssemblerRecipes.addRecipe(true, new ItemStack[]{aInput1, (aInput2 == null ? aInput1 : aInput2)}, new ItemStack[]{aOutput1}, null, new FluidStack[]{aFluidInput == null ? null : aFluidInput}, null, aDuration, aEUt, 0); return true; } |