diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-21 13:58:49 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-04-21 13:58:49 +1000 |
commit | 812163905525cabc5cad13358454f22f3109adfb (patch) | |
tree | 918cb17c81e899e5c7201417534da57b0353266e /src/Java/gtPlusPlus/core/recipe | |
parent | ca4a99724a9c504972da28749a3214aa182075e1 (diff) | |
download | GT5-Unofficial-812163905525cabc5cad13358454f22f3109adfb.tar.gz GT5-Unofficial-812163905525cabc5cad13358454f22f3109adfb.tar.bz2 GT5-Unofficial-812163905525cabc5cad13358454f22f3109adfb.zip |
$ Moved EBF recipe to try fix NPE.
Diffstat (limited to 'src/Java/gtPlusPlus/core/recipe')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 68f7bdd762..018ffb08e1 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -1736,6 +1736,20 @@ public class RECIPES_GREGTECH { MaterialUtils.getVoltageForTier(GTNH ? 3 : 2), 2800); + //Krypton Processing + if (ModItems.itemHotTitaniumIngot != null) { + GT_Values.RA.addBlastRecipe( + ItemUtils.getItemStackOfAmountFromOreDict("ingotTitanium", 1), + CI.getNumberedCircuit(16), + GT_Values.NF, + GT_Values.NF, + ItemUtils.getItemStackOfAmountFromOreDict("ingotHotTitanium", 1), + null, + 10 * 20, + 500, + Materials.Titanium.mBlastFurnaceTemp); + } + } |