aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common
diff options
context:
space:
mode:
authorJohannes Gäßler <updrn@student.kit.edu>2017-07-23 21:30:57 +0200
committerJohannes Gäßler <updrn@student.kit.edu>2017-07-23 21:30:57 +0200
commitf95d89a5e6b1ab6b3e7fab5e56f9b51e21ae78e3 (patch)
tree0ce7bea8304f966e484bbe34add516864c601203 /src/main/java/gregtech/common
parent8fa91db261def5087ff4dcf25de899de36457a98 (diff)
downloadGT5-Unofficial-f95d89a5e6b1ab6b3e7fab5e56f9b51e21ae78e3.tar.gz
GT5-Unofficial-f95d89a5e6b1ab6b3e7fab5e56f9b51e21ae78e3.tar.bz2
GT5-Unofficial-f95d89a5e6b1ab6b3e7fab5e56f9b51e21ae78e3.zip
Implemented Roasting and Carbothermic Reduction for the EBF.
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r--src/main/java/gregtech/common/GT_RecipeAdder.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java
index 28a5902c7f..43755c2731 100644
--- a/src/main/java/gregtech/common/GT_RecipeAdder.java
+++ b/src/main/java/gregtech/common/GT_RecipeAdder.java
@@ -173,7 +173,8 @@ public class GT_RecipeAdder
if ((aDuration = GregTech_API.sRecipeFile.get("blastfurnace", aInput1, aDuration)) <= 0) {
return false;
}
- GT_Recipe.GT_Recipe_Map.sBlastRecipes.addRecipe(true, new ItemStack[]{aInput1, aInput2}, new ItemStack[]{aOutput1, aOutput2}, null, null, new FluidStack[]{aFluidInput}, null, aDuration, aEUt, aLevel);
+ GT_Recipe.GT_Recipe_Map.sBlastRecipes.addRecipe(true, new ItemStack[]{aInput1, aInput2}, new ItemStack[]{aOutput1, aOutput2}, null, null,
+ new FluidStack[]{aFluidInput}, new FluidStack[]{aFluidOutput}, aDuration, aEUt, aLevel);
return true;
}