diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-11-16 21:06:01 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-11-16 21:06:01 +1000 |
commit | 7769afdb2d66194197b6621029f1b4438e2225e7 (patch) | |
tree | e878e0e4ee9891a9621a5f011339d7e8bd1fe475 | |
parent | 8c07d50d0c4fe41eb238280124301509062a3a59 (diff) | |
download | GT5-Unofficial-7769afdb2d66194197b6621029f1b4438e2225e7.tar.gz GT5-Unofficial-7769afdb2d66194197b6621029f1b4438e2225e7.tar.bz2 GT5-Unofficial-7769afdb2d66194197b6621029f1b4438e2225e7.zip |
$ Pollution Scrubber uses Turbine Blades very fast. Fixes #155.
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java index 9fcecf8e2f..69892ea995 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java @@ -264,7 +264,7 @@ public class GregtechMetaAtmosphericReconditioner extends GT_MetaTileEntity_Basi if (damageValue <= 1){ if (this.mOptimalAirFlow > 0){ - damageValue = (this.mOptimalAirFlow/10); + damageValue = (this.mOptimalAirFlow/10/2); } else { return false; |