From 12f4971046057508761bacc07e34ca6e1a5bb10e Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Fri, 31 Aug 2018 00:52:32 +1000 Subject: $ Fixed Cost/t and Total time taken for two recipes using Ethylbenzene as an anti-knock agent for fuels. Fixes https://github.com/GTNewHorizons/NewHorizons/issues/3544. --- src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 8 ++++---- 1 file changed, 4 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 27c94b4ba4..80f1828be3 100644 --- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java +++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java @@ -142,16 +142,16 @@ public class CoalTar { null, FluidUtils.getFluidStack("nitrofuel", 7500), ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 11), - CORE.GTNH ? 1000 : 5000, - 100); + 100, + CORE.GTNH ? 1000 : 500); GT_Values.RA.addChemicalRecipe( ItemUtils.getItemStackOfAmountFromOreDict("cellBioDiesel", 9), ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 2), null, FluidUtils.getFluidStack("nitrofuel", 3000), ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 11), - CORE.GTNH ? 1000 : 5000, - 300); + 300, + CORE.GTNH ? 1000 : 500); } public static void recipeCreateEthylene(){ -- cgit