diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-05-17 12:07:22 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-05-17 12:07:22 +1000 |
commit | 7db09b10c98752d1092e9ace9460055d0b80ac6c (patch) | |
tree | fa76301c228796e215b6ff6ab9500ec6ad20f8d5 /src/Java/gtPlusPlus/xmod | |
parent | be850d4bcc620c6f30ab4723085a2b73b34e07fa (diff) | |
download | GT5-Unofficial-7db09b10c98752d1092e9ace9460055d0b80ac6c.tar.gz GT5-Unofficial-7db09b10c98752d1092e9ace9460055d0b80ac6c.tar.bz2 GT5-Unofficial-7db09b10c98752d1092e9ace9460055d0b80ac6c.zip |
$ One more small fix for Pyro recipe conversion.
% Made Advanced Mufflers work as efficiently as their standard tier counterparts while there is no air filter. (Currently bugged)
Diffstat (limited to 'src/Java/gtPlusPlus/xmod')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler_Adv.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler_Adv.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler_Adv.java index 4052a5c266..5fa1fc8aba 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler_Adv.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_Muffler_Adv.java @@ -145,7 +145,7 @@ public class GT_MetaTileEntity_Hatch_Muffler_Adv extends GT_MetaTileEntity_Hatch double aVal1 = aPollution * Math.pow(0.64D, (double) (this.mTier - 1)); int aVal2 = (int) aVal1; if (!hasValidFilter()) { - aVal2 = 0; + aVal2 = (int) ((double) aPollution * Math.pow(0.7D, (double) (this.mTier - 1)));; } return aVal2; } |