diff options
author | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-10 22:21:37 +1000 |
---|---|---|
committer | Draknyte1 <Draknyte1@hotmail.com> | 2017-07-10 22:21:37 +1000 |
commit | 2a421cbeb6326bc08b0095bb9c87bed8eef5259c (patch) | |
tree | 28b7cd2158abe55e6f5cee2ec6d02390f903bfbc /src/Java | |
parent | ed2984f131b714df4a33e78349ec9f4e1ae68b76 (diff) | |
download | GT5-Unofficial-2a421cbeb6326bc08b0095bb9c87bed8eef5259c.tar.gz GT5-Unofficial-2a421cbeb6326bc08b0095bb9c87bed8eef5259c.tar.bz2 GT5-Unofficial-2a421cbeb6326bc08b0095bb9c87bed8eef5259c.zip |
% Made the Coke Oven recipes that get duplicated to the pyrolyse oven take 20% longer in the Pyrolyse.
Diffstat (limited to 'src/Java')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/reflect/AddGregtechRecipe.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/core/util/reflect/AddGregtechRecipe.java b/src/Java/gtPlusPlus/core/util/reflect/AddGregtechRecipe.java index ee9f8813f0..41aa3468f7 100644 --- a/src/Java/gtPlusPlus/core/util/reflect/AddGregtechRecipe.java +++ b/src/Java/gtPlusPlus/core/util/reflect/AddGregtechRecipe.java @@ -22,6 +22,7 @@ public final class AddGregtechRecipe { ){ //Seconds Conversion int TIME = timeInSeconds*20; + int TIMEPYRO = TIME+(TIME/5); CORE.RA.addCokeOvenRecipe( input1, ItemUtils.getGregtechCircuit(circuitNumber), @@ -36,7 +37,7 @@ public final class AddGregtechRecipe { circuitNumber, output1, outputFluid1, - TIME, + TIMEPYRO, euTick); |