From 6befe67098948e2c955e507e37879eee03bb9ed6 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Thu, 23 Aug 2018 14:33:45 +1000 Subject: % Made Ethylbenzene knocking recipes require EV for GTNH, or HV otherwise. --- src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/Java/gtPlusPlus/core/item') diff --git a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java index 2052a8d910..27c94b4ba4 100644 --- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java +++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java @@ -138,17 +138,19 @@ public class CoalTar { private static void recipeEthylBenzineFuelsIntoHeavyFuel() { GT_Values.RA.addChemicalRecipe( ItemUtils.getItemStackOfAmountFromOreDict("cellFuel", 9), - ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 1), + ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 2), null, FluidUtils.getFluidStack("nitrofuel", 7500), - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 10), + ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 11), + CORE.GTNH ? 1000 : 5000, 100); GT_Values.RA.addChemicalRecipe( ItemUtils.getItemStackOfAmountFromOreDict("cellBioDiesel", 9), - ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 1), + ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 2), null, FluidUtils.getFluidStack("nitrofuel", 3000), - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 10), + ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 11), + CORE.GTNH ? 1000 : 5000, 300); } -- cgit