diff options
| author | Alkalus <draknyte1@hotmail.com> | 2017-08-26 16:21:08 +1000 |
|---|---|---|
| committer | Alkalus <draknyte1@hotmail.com> | 2017-08-26 16:21:08 +1000 |
| commit | f1aad368f3940fb43dc99a47c7675fb36922336a (patch) | |
| tree | 29338c306246fc79ab4dd260635aa03ad5d37e68 | |
| parent | c5caaa5bfd1ee47516272342dc1914911e6ca1e6 (diff) | |
| download | GT5-Unofficial-f1aad368f3940fb43dc99a47c7675fb36922336a.tar.gz GT5-Unofficial-f1aad368f3940fb43dc99a47c7675fb36922336a.tar.bz2 GT5-Unofficial-f1aad368f3940fb43dc99a47c7675fb36922336a.zip | |
$ Fixed the Casing_Refinery_Internal recipe when New Horizons is loaded.
| -rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java index b395cbac6f..638d2df1ae 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_Machines.java @@ -923,10 +923,19 @@ public class RECIPES_Machines { "gearStellite", CI.machineHull_LuV, "gearStellite", GregtechItemList.Industrial_FuelRefinery.get(1)); + ItemStack mInnerTank; + + if (CORE.GTNH){ + mInnerTank = GregtechItemList.GT_FluidTank_HV.get(1); + } + else { + mInnerTank = GregtechItemList.GT_FluidTank_EV.get(1); + } + //Incoloy Casing RecipeUtils.addShapedGregtechRecipe( "plateIncoloyDS", "pipeHugeStaballoy", "plateIncoloyDS", - "gearIncoloyDS", GregtechItemList.GT_FluidTank_EV.get(1), "gearIncoloyDS", + "gearIncoloyDS", mInnerTank, "gearIncoloyDS", "plateIncoloyDS", "pipeHugeStaballoy", "plateIncoloyDS", GregtechItemList.Casing_Refinery_Internal.get(1)); |
