aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/GTplusplus.java
diff options
context:
space:
mode:
authorJordan Byrne <draknyte1@hotmail.com>2018-05-13 20:12:39 +1000
committerJordan Byrne <draknyte1@hotmail.com>2018-05-13 20:12:39 +1000
commit77dbbdd40278935a9a81cac3e46a656217fd64ed (patch)
tree2ebf6efc49ec6c749513f1b2e9a3b4f33fe8dfc4 /src/Java/gtPlusPlus/GTplusplus.java
parentcd21e68b6cc8e579e1f78bb0f88f72f1ba19fc10 (diff)
downloadGT5-Unofficial-77dbbdd40278935a9a81cac3e46a656217fd64ed.tar.gz
GT5-Unofficial-77dbbdd40278935a9a81cac3e46a656217fd64ed.tar.bz2
GT5-Unofficial-77dbbdd40278935a9a81cac3e46a656217fd64ed.zip
$ Fixed a bug where all Multiblock recipe maps stopped respecting output chances.
Diffstat (limited to 'src/Java/gtPlusPlus/GTplusplus.java')
-rw-r--r--src/Java/gtPlusPlus/GTplusplus.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/GTplusplus.java b/src/Java/gtPlusPlus/GTplusplus.java
index 3cb2dbefee..1471bf736d 100644
--- a/src/Java/gtPlusPlus/GTplusplus.java
+++ b/src/Java/gtPlusPlus/GTplusplus.java
@@ -212,14 +212,14 @@ public class GTplusplus implements ActionListener {
//Large Centrifuge generation
for (GT_Recipe x : GT_Recipe.GT_Recipe_Map.sCentrifugeRecipes.mRecipeList) {
if (x != null) {
- CORE.RA.addMultiblockCentrifugeRecipe(x.mInputs, x.mFluidInputs, x.mFluidOutputs, x.mOutputs, x.mDuration, x.mEUt);
+ CORE.RA.addMultiblockCentrifugeRecipe(x.mInputs, x.mFluidInputs, x.mFluidOutputs, x.mOutputs, x.mChances, x.mDuration, x.mEUt, x.mSpecialValue);
}
}
//Large Electrolyzer generation
for (GT_Recipe x : GT_Recipe.GT_Recipe_Map.sElectrolyzerRecipes.mRecipeList) {
if (x != null) {
- CORE.RA.addMultiblockElectrolyzerRecipe(x.mInputs, x.mFluidInputs, x.mFluidOutputs, x.mOutputs, x.mDuration, x.mEUt);
+ CORE.RA.addMultiblockElectrolyzerRecipe(x.mInputs, x.mFluidInputs, x.mFluidOutputs, x.mOutputs, x.mChances, x.mDuration, x.mEUt, x.mSpecialValue);
}
}
@@ -231,7 +231,7 @@ public class GTplusplus implements ActionListener {
FluidStack[] y = new FluidStack[len + 1];
int slot = y.length - 1;
y[slot] = FluidUtils.getFluidStack("cryotheum", mTime);
- CORE.RA.addAdvancedFreezerRecipe(x.mInputs, y, x.mFluidOutputs, x.mOutputs, mTime, x.mEUt);
+ CORE.RA.addAdvancedFreezerRecipe(x.mInputs, x.mFluidInputs, x.mFluidOutputs, x.mOutputs, x.mChances, x.mDuration, x.mEUt, x.mSpecialValue);
}
}