diff options
-rw-r--r-- | src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 10 |
1 files changed, 6 insertions, 4 deletions
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); } |