diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-18 20:29:10 +1000 |
---|---|---|
committer | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2018-08-18 20:29:10 +1000 |
commit | ef47e1018708945eebe6896104423245d73746d0 (patch) | |
tree | 02f47b5745e55b7a49859e8c80cff821aced01c3 /src | |
parent | 181bf69bc4b91b0c99cbfb4b25e6e163c3940097 (diff) | |
download | GT5-Unofficial-ef47e1018708945eebe6896104423245d73746d0.tar.gz GT5-Unofficial-ef47e1018708945eebe6896104423245d73746d0.tar.bz2 GT5-Unofficial-ef47e1018708945eebe6896104423245d73746d0.zip |
$ Fixed Pollution scrubbers, which now have the correct slots automatable. Closes #346.
% Updated scrubber tooltips to reflect that the rotors are not automatable.
Diffstat (limited to 'src')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/basic/GregtechMetaAtmosphericReconditioner.java | 5 |
1 files changed, 3 insertions, 2 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 f9904ad2ee..a55876ac35 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 @@ -72,7 +72,8 @@ public class GregtechMetaAtmosphericReconditioner extends GT_MetaTileEntity_Basi public String[] getDescription() { return new String[]{ this.mDescription, - "Requires a Turbine Rotor and an Air Filter to run.", + "Requires a turbine rotor and an Air Filter [T1/T2] to run.", + "The turbine rotor must be manually inserted/replaced", "Can be configured with a screwdriver to change modes", "Low Efficiency: Removes half pollution, Turbine takes 50% dmg", "High Efficiency: Removes full pollution, Turbine takes 100% dmg", @@ -424,7 +425,7 @@ public class GregtechMetaAtmosphericReconditioner extends GT_MetaTileEntity_Basi @Override public boolean canInsertItem(int aIndex, ItemStack aStack, int aSide) { - if (aIndex == 5){ + if (aIndex == 4){ return false; } return super.canInsertItem(aIndex, aStack, aSide); |