diff options
author | Maxim <maxim235@gmx.de> | 2023-01-30 14:54:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-30 13:54:17 +0000 |
commit | a32aee4dce706f11682eedd69671bd462b2ab676 (patch) | |
tree | 1dce1a5965257553df5e2416464b0f1eb2402036 /src | |
parent | aac4b936e4949dca0919f0eec3f5a47f74928406 (diff) | |
download | GT5-Unofficial-a32aee4dce706f11682eedd69671bd462b2ab676.tar.gz GT5-Unofficial-a32aee4dce706f11682eedd69671bd462b2ab676.tar.bz2 GT5-Unofficial-a32aee4dce706f11682eedd69671bd462b2ab676.zip |
Added distilled water as valid water type (#519)
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialWashPlant.java | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialWashPlant.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialWashPlant.java index 4192515346..77db7b25e7 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialWashPlant.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/processing/GregtechMetaTileEntity_IndustrialWashPlant.java @@ -98,7 +98,11 @@ public class GregtechMetaTileEntity_IndustrialWashPlant extends ofBlock(getCasingBlock(), getCasingMeta())))) .addElement( 'w', - ofChain(isAir(), ofBlockAnyMeta(Blocks.water), ofBlockAnyMeta(Blocks.flowing_water))) + ofChain( + isAir(), + ofBlockAnyMeta(Blocks.water), + ofBlockAnyMeta(Blocks.flowing_water), + ofBlockAnyMeta(BlocksItems.getFluidBlock(InternalName.fluidDistilledWater)))) .build(); } return STRUCTURE_DEFINITION; |