aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlkalus <draknyte1@hotmail.com>2017-11-16 21:06:01 +1000
committerAlkalus <draknyte1@hotmail.com>2017-11-16 21:06:01 +1000
commit7769afdb2d66194197b6621029f1b4438e2225e7 (patch)
treee878e0e4ee9891a9621a5f011339d7e8bd1fe475 /src
parent8c07d50d0c4fe41eb238280124301509062a3a59 (diff)
downloadGT5-Unofficial-7769afdb2d66194197b6621029f1b4438e2225e7.tar.gz
GT5-Unofficial-7769afdb2d66194197b6621029f1b4438e2225e7.tar.bz2
GT5-Unofficial-7769afdb2d66194197b6621029f1b4438e2225e7.zip
$ Pollution Scrubber uses Turbine Blades very fast. Fixes #155.
Diffstat (limited to 'src')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java2
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;