diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-31 00:52:32 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-31 00:52:32 +1000 |
commit | 12f4971046057508761bacc07e34ca6e1a5bb10e (patch) | |
tree | 7062e0a9b6d2f37c62c5857363c325fff4a49fa5 /src/Java/gtPlusPlus/core/item | |
parent | a12b62a2ef1e68b7e813746353e2de9fd317f7c4 (diff) | |
download | GT5-Unofficial-12f4971046057508761bacc07e34ca6e1a5bb10e.tar.gz GT5-Unofficial-12f4971046057508761bacc07e34ca6e1a5bb10e.tar.bz2 GT5-Unofficial-12f4971046057508761bacc07e34ca6e1a5bb10e.zip |
$ 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.
Diffstat (limited to 'src/Java/gtPlusPlus/core/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java | 8 |
1 files changed, 4 insertions, 4 deletions
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(){ |