aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-23 14:33:45 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2018-08-23 14:33:45 +1000
commit6befe67098948e2c955e507e37879eee03bb9ed6 (patch)
treec539c1ca263180a1e99efbb526ac7b536b0fb39c /src/Java/gtPlusPlus/core
parentaafa4580ad2425e8c87384f70d94bc4a260fe978 (diff)
downloadGT5-Unofficial-6befe67098948e2c955e507e37879eee03bb9ed6.tar.gz
GT5-Unofficial-6befe67098948e2c955e507e37879eee03bb9ed6.tar.bz2
GT5-Unofficial-6befe67098948e2c955e507e37879eee03bb9ed6.zip
% Made Ethylbenzene knocking recipes require EV for GTNH, or HV otherwise.
Diffstat (limited to 'src/Java/gtPlusPlus/core')
-rw-r--r--src/Java/gtPlusPlus/core/item/chemistry/CoalTar.java10
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);
}