aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/item
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-31 00:52:32 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-31 00:52:32 +1000
commit12f4971046057508761bacc07e34ca6e1a5bb10e (patch)
tree7062e0a9b6d2f37c62c5857363c325fff4a49fa5 /src/Java/gtPlusPlus/core/item
parenta12b62a2ef1e68b7e813746353e2de9fd317f7c4 (diff)
downloadGT5-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.java8
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(){