diff options
author | miozune <miozune@gmail.com> | 2023-12-12 16:59:55 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 16:59:55 +0900 |
commit | 2bfa13a6ba746f65534af5f8c1b4c2485e73efc1 (patch) | |
tree | f539d469b17e62b34f0c13edd3281a0464420ca0 /src/main/java/gtPlusPlus/xmod/gregtech | |
parent | 539b2c8ebc933ea21042664960a11a57175aea7b (diff) | |
download | GT5-Unofficial-2bfa13a6ba746f65534af5f8c1b4c2485e73efc1.tar.gz GT5-Unofficial-2bfa13a6ba746f65534af5f8c1b4c2485e73efc1.tar.bz2 GT5-Unofficial-2bfa13a6ba746f65534af5f8c1b4c2485e73efc1.zip |
Fix thermal boiler not allowing insertion of water (#797)
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_ThermalBoiler.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_ThermalBoiler.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_ThermalBoiler.java index 13eabb8992..8d851a0264 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_ThermalBoiler.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GT4Entity_ThermalBoiler.java @@ -89,6 +89,11 @@ public class GT4Entity_ThermalBoiler extends GregtechMeta_MultiBlockBase<GT4Enti return GTPPRecipeMaps.thermalBoilerRecipes; } + @Override + protected boolean filtersFluid() { + return false; + } + private static Item mLavaFilter; private static Fluid mLava = null; private static Fluid mPahoehoe = null; |