diff options
author | boubou_19 <miisterunknown@gmail.com> | 2021-11-25 01:49:18 +0100 |
---|---|---|
committer | boubou_19 <miisterunknown@gmail.com> | 2021-11-25 01:49:18 +0100 |
commit | ef7017fdb7db218971492a3cc250b3f56eb3f576 (patch) | |
tree | ba74db67ed7c452b765646cf6ceadcab11b1625a | |
parent | 91e6127a4bcceabf9edb8dbaad916228953d85ca (diff) | |
download | GT5-Unofficial-ef7017fdb7db218971492a3cc250b3f56eb3f576.tar.gz GT5-Unofficial-ef7017fdb7db218971492a3cc250b3f56eb3f576.tar.bz2 GT5-Unofficial-ef7017fdb7db218971492a3cc250b3f56eb3f576.zip |
forgot to convert tick value into second
-rw-r--r-- | src/main/java/gregtech/common/GT_Proxy.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/GT_Proxy.java b/src/main/java/gregtech/common/GT_Proxy.java index 7e77a22703..37ff52868f 100644 --- a/src/main/java/gregtech/common/GT_Proxy.java +++ b/src/main/java/gregtech/common/GT_Proxy.java @@ -193,7 +193,7 @@ public abstract class GT_Proxy implements IGT_Mod, IGuiHandler, IFuelHandler { public int mPollutionEBF = 20; public int mPollutionCharcoalPit = 5; public int mPollutionLargeCombustionEnginePerSecond = 480; - public int mPollutionExtremeCombustionEnginePerSecond = 192; + public int mPollutionExtremeCombustionEnginePerSecond = 3840; public int mPollutionImplosionCompressorPerSecond = 10000; public int mPollutionLargeBronzeBoilerPerSecond = 1000; public int mPollutionLargeSteelBoilerPerSecond = 2000; |