From ef47e1018708945eebe6896104423245d73746d0 Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Sat, 18 Aug 2018 20:29:10 +1000 Subject: $ Fixed Pollution scrubbers, which now have the correct slots automatable. Closes #346. % Updated scrubber tooltips to reflect that the rotors are not automatable. --- .../machines/basic/GregtechMetaAtmosphericReconditioner.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common') 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); -- cgit