aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-12-31 18:45:41 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-12-31 18:45:41 +1000
commitdb83ad0447c2711c1a4cc3610cc6ebac5c91c1b4 (patch)
tree644c83683d73c361e8d392df5f9378a4bb2ace5d /src/Java/gtPlusPlus/xmod/gregtech
parent59cdc42e440a8b6cd1e4519659a12030348a29db (diff)
downloadGT5-Unofficial-db83ad0447c2711c1a4cc3610cc6ebac5c91c1b4.tar.gz
GT5-Unofficial-db83ad0447c2711c1a4cc3610cc6ebac5c91c1b4.tar.bz2
GT5-Unofficial-db83ad0447c2711c1a4cc3610cc6ebac5c91c1b4.zip
+ Gave Fission Fuels their own NEI handler, which allows 9 input fluids.
% Moved Fission Fuel recipe map to it's own class, specially for the NEI handler. ^ Updated CodeChickenCore-1.7.10-1.0.6.44-dev.jar to CodeChickenCore-1.7.10-1.0.7.47-dev.jar. ^ Updated CodeChickenLib-1.7.10-1.1.3.136-dev.jar to CodeChickenLib-1.7.10-1.1.3.140-dev.jar. ^ Updated NotEnoughItems-1.7.10-1.0.4.107-dev.jar to NotEnoughItems-1.7.10-1.0.5.120-dev.jar.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java b/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java
index 4c31c51fe6..177ee518b0 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java
@@ -2,6 +2,7 @@ package gtPlusPlus.xmod.gregtech.recipes;
import gregtech.api.GregTech_API;
import gregtech.api.enums.Materials;
+import gregtech.api.util.CustomRecipeMap;
import gregtech.api.util.Recipe_GT;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.core.util.item.ItemUtils;
@@ -316,7 +317,8 @@ public class GregtechRecipeAdder implements IGregtech_RecipeAdder {
}
FluidStack inputs[] = {aInput1, aInput2, aInput3, aInput4, aInput5, aInput6, aInput7, aInput8, aInput9};
FluidStack outputs[] = {aOutput1, aOutput2};
- Recipe_GT.Gregtech_Recipe_Map.sFissionFuelProcessing.addRecipe(null, inputs, outputs, aDuration, aEUt, 0);
+ //Recipe_GT.Gregtech_Recipe_Map.sFissionFuelProcessing.addRecipe(null, inputs, outputs, aDuration, aEUt, 0);
+ CustomRecipeMap.sFissionFuelProcessing.addRecipe(null, inputs, outputs, aDuration, aEUt, 0);
return true;
}