diff options
author | NotAPenguin <michiel.vandeginste@gmail.com> | 2024-10-10 00:16:44 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-10 00:16:44 +0200 |
commit | ab47cba1f8cec37bf762faa32fe8c663a6ad144f (patch) | |
tree | fa314eaa12157488c4a2694bb417a234ec265744 /src/main/java | |
parent | 7bd486b1b02ea1fd6bb0e0d823d66ce5e18399ec (diff) | |
download | GT5-Unofficial-ab47cba1f8cec37bf762faa32fe8c663a6ad144f.tar.gz GT5-Unofficial-ab47cba1f8cec37bf762faa32fe8c663a6ad144f.tar.bz2 GT5-Unofficial-ab47cba1f8cec37bf762faa32fe8c663a6ad144f.zip |
Allow chemical bath to count flowing water as a valid fluid block (#3330)
Diffstat (limited to 'src/main/java')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/MTEIndustrialWashPlant.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/MTEIndustrialWashPlant.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/MTEIndustrialWashPlant.java index bf4c1c0481..89a1b0c102 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/MTEIndustrialWashPlant.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/MTEIndustrialWashPlant.java @@ -331,7 +331,7 @@ public class MTEIndustrialWashPlant extends GTPPMultiBlockBase<MTEIndustrialWash } } } - if (tBlock == Blocks.water) { + if (tBlock == Blocks.water || tBlock == Blocks.flowing_water) { ++tAmount; } else if (tBlock == BlocksItems.getFluidBlock(InternalName.fluidDistilledWater)) { ++tAmount; |