From bae79b4ac8780835a31c73fd837094573a21c0fe Mon Sep 17 00:00:00 2001 From: Alkalus Date: Thu, 14 Sep 2017 19:31:15 +1000 Subject: $ Recipe fixes. --- src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/Java/gtPlusPlus/core') diff --git a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java index cc3738322c..77fa391111 100644 --- a/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java +++ b/src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java @@ -260,10 +260,10 @@ public class CoalTar { private static void recipePhthalicAcidToPhthalicAnhydride() { CORE.RA.addDehydratorRecipe( - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 2), - FluidUtils.getFluidStack("fluid.phthalicacid", 2000), + ItemUtils.getGregtechCircuit(6), + FluidUtils.getFluidStack("fluid.phthalicacid", 144), new ItemStack[]{ - ItemUtils.getItemStackOfAmountFromOreDict("cellPhthalicAnhydride", 2) + ItemUtils.getItemStackOfAmountFromOreDict("dustPhthalicAnhydride", 1) }, 60*20, 120); @@ -272,11 +272,11 @@ public class CoalTar { private static void recipe2Ethylanthraquinone() { GT_Values.RA.addChemicalRecipe( - ItemUtils.getItemStackOfAmountFromOreDict("cellPhthalicAnhydride", 2), - ItemUtils.getItemStackOfAmountFromOreDict("CellEthylbenzene", 2), + ItemUtils.getItemStackOfAmountFromOreDict("dustPhthalicAnhydride", 4), + ItemUtils.getItemStackOfAmountFromOreDict("cellEthylbenzene", 2), null, - FluidUtils.getFluidStack("fluid.2ethylanthraquinone", 4000), - ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 4), + FluidUtils.getFluidStack("fluid.2ethylanthraquinone", 2000+(144*4)), + ItemUtils.getItemStackOfAmountFromOreDict("cellEmpty", 2), 20*16); } -- cgit