diff options
author | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-05 12:25:33 +0200 |
---|---|---|
committer | Johannes Gäßler <updrn@student.kit.edu> | 2017-06-05 12:25:33 +0200 |
commit | 364b4bc3ae02c2efe486b262e6fbc12b9e9fe6e9 (patch) | |
tree | b3fd3a87a14ffbf7c53e389209bcd16115a1a132 /src/main/java/gregtech/common | |
parent | 8db4738e81f60c3e8b82afe41b9f5d2aa1aaa3a1 (diff) | |
download | GT5-Unofficial-364b4bc3ae02c2efe486b262e6fbc12b9e9fe6e9.tar.gz GT5-Unofficial-364b4bc3ae02c2efe486b262e6fbc12b9e9fe6e9.tar.bz2 GT5-Unofficial-364b4bc3ae02c2efe486b262e6fbc12b9e9fe6e9.zip |
Implemented Bio Diesel, Glyceryl Trinitrate, adjusted alcohol fuel value
Bio Diesel can be produced from Seed Oil or Fish Oil.
Bio Diesel Production yields Glyceryl as a byproduct, which can be used
for Dynamite production.
Alcohols have their fuel value reduced by 20000 per Oxygen atom
Increased the potency of Dynamite in the Implosion Compresser so that
dynamite recipes actually show up.
In return Dynamite now needs more Glyceryl Trinitrate: 150 -> 500
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/GT_RecipeAdder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_RecipeAdder.java b/src/main/java/gregtech/common/GT_RecipeAdder.java index 4e5eec6ab3..9e1316b9cb 100644 --- a/src/main/java/gregtech/common/GT_RecipeAdder.java +++ b/src/main/java/gregtech/common/GT_RecipeAdder.java @@ -344,7 +344,7 @@ public class GT_RecipeAdder } int tExplosives = aInput2 > 0 ? aInput2 < 64 ? aInput2 : 64 : 1; int tGunpowder = tExplosives * 2; - int tDynamite = tExplosives * 4; + int tDynamite = tExplosives/2; int tTNT = Math.max(1, tExplosives/2); int tITNT = Math.max(1, tExplosives/4); //new GT_Recipe(aInput1, aInput2, aOutput1, aOutput2); |