diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-06-26 20:24:33 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-06-26 20:24:33 +1000 |
commit | ccc15f3973d86b3c99bd3aa1500fa6af25a3d36f (patch) | |
tree | 5e886d5687874951b952c7886cddcaf57886b380 /src/Java/gtPlusPlus/core | |
parent | 1a4337307986ff30a0ce6a28f0a32b3fe3796ad2 (diff) | |
download | GT5-Unofficial-ccc15f3973d86b3c99bd3aa1500fa6af25a3d36f.tar.gz GT5-Unofficial-ccc15f3973d86b3c99bd3aa1500fa6af25a3d36f.tar.bz2 GT5-Unofficial-ccc15f3973d86b3c99bd3aa1500fa6af25a3d36f.zip |
+ Added new recipe for HG-1223.
$ Fixed generation of mixer recipes, which will now use circuits if the length < 4.
$ Properly disabled the advanced mixer, after a futile previous attempt.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r-- | src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java | 23 |
1 files changed, 18 insertions, 5 deletions
diff --git a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java index 3a0d033725..ba65ef0c97 100644 --- a/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/gtPlusPlus/core/recipe/RECIPES_GREGTECH.java @@ -42,7 +42,7 @@ public class RECIPES_GREGTECH { chemicalReactorRecipes(); dehydratorRecipes(); blastFurnaceRecipes(); - lftrRecipes(); + //lftrRecipes(); fissionFuelRecipes(); autoclaveRecipes(); compressorRecipes(); @@ -52,7 +52,7 @@ public class RECIPES_GREGTECH { benderRecipes(); cyclotronRecipes(); blastSmelterRecipes(); - advancedMixerRecipes(); + //advancedMixerRecipes(); sifterRecipes(); electroMagneticSeperatorRecipes(); extruderRecipes(); @@ -774,6 +774,16 @@ public class RECIPES_GREGTECH { ItemUtils.getItemStackOfAmountFromOreDict("dustUranium235", 1), null, null, FluidUtils.getFluidStack("hydrofluoricacid", 144 * 5), FluidUtils.getFluidStack("molten.uraniumtetrafluoride", 144 * 5), null, 3000, 500); + GT_Values.RA.addMixerRecipe( + ItemUtils.getItemStackOfAmountFromOreDict("cellMercury", 1), + ItemUtils.getItemStackOfAmountFromOreDict("dustBarium", 2), + ItemUtils.getItemStackOfAmountFromOreDict("dustCalcium", 2), + ItemUtils.getItemStackOfAmountFromOreDict("dustCopper", 3), + null, + ALLOY.HG1223.getFluid(144*16), + CI.emptyCells(1), + 30 * 20, + 500); } private static void chemicalReactorRecipes() { @@ -1066,12 +1076,15 @@ public class RECIPES_GREGTECH { private static void advancedMixerRecipes() { // HgBa2Ca2Cu3O8 - CORE.RA.addMixerRecipe(ItemUtils.getItemStackOfAmountFromOreDict("cellMercury", 1), + CORE.RA.addMixerRecipe( + ItemUtils.getItemStackOfAmountFromOreDict("cellMercury", 1), ItemUtils.getItemStackOfAmountFromOreDict("dustBarium", 2), ItemUtils.getItemStackOfAmountFromOreDict("dustCalcium", 2), - ItemUtils.getItemStackOfAmountFromOreDict("dustCopper", 3), FluidUtils.getFluidStack("oxygen", 8000), + ItemUtils.getItemStackOfAmountFromOreDict("dustCopper", 3), + FluidUtils.getFluidStack("oxygen", 8000), null, CI.emptyCells(1), ALLOY.HG1223.getDust(16), null, null, - 30 * 20, 500); + 30 * 20, 500); + } } |