diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-11-16 22:05:56 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-11-16 22:05:56 +1000 |
commit | e827267bf3c2d43f66cef0347878e38a22d6bccd (patch) | |
tree | 8900d14752cde38eecc31c73870199a57c39bda2 /src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi | |
parent | 7769afdb2d66194197b6621029f1b4438e2225e7 (diff) | |
download | GT5-Unofficial-e827267bf3c2d43f66cef0347878e38a22d6bccd.tar.gz GT5-Unofficial-e827267bf3c2d43f66cef0347878e38a22d6bccd.tar.bz2 GT5-Unofficial-e827267bf3c2d43f66cef0347878e38a22d6bccd.zip |
+ Added the ability for the Pollution Detector to output redstone when above a level set by the screwdriver.
+ Added pollution to the Wash plant.
% Improved Pollution Detector right click message.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialWashPlant.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialWashPlant.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialWashPlant.java index cf311210c7..9b7927c5ad 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialWashPlant.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialWashPlant.java @@ -241,7 +241,7 @@ extends GregtechMeta_MultiBlockBase { @Override public int getPollutionPerTick(final ItemStack aStack) { - return 0; + return 20; } @Override |