diff options
author | Alkalus <3060479+draknyte1@users.noreply.github.com> | 2019-12-30 19:04:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-30 19:04:43 +0000 |
commit | 894e4f5598957d2befd672944436f353410bb2af (patch) | |
tree | 03b89bbc7e048246dec18569dec3733df02d4b68 /src/Java/gtPlusPlus/xmod/gregtech/api | |
parent | a404663f374dbb4e641f51a0d975ecfb651cb4f3 (diff) | |
parent | e6ecfb3505e79fab5e0dfa7e597d6efc30de5b14 (diff) | |
download | GT5-Unofficial-894e4f5598957d2befd672944436f353410bb2af.tar.gz GT5-Unofficial-894e4f5598957d2befd672944436f353410bb2af.tar.bz2 GT5-Unofficial-894e4f5598957d2befd672944436f353410bb2af.zip |
Merge pull request #593 from botn365/patch-2
$ Fix space check for fluid outputs
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech/api')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java index 4a6cad20c3..53068c68a1 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/base/GregtechMeta_MultiBlockBase.java @@ -770,7 +770,7 @@ public abstract class GregtechMeta_MultiBlockBase extends GT_MetaTileEntity_Mult // We have Fluid Stacks we did not merge. Do we have space? if (aOutputFluids.size() > 0) { // Not enough space to add fluids. - if (aOutputFluids.size() < aEmptyFluidHatches) { + if (aOutputFluids.size() > aEmptyFluidHatches) { Logger.INFO("Failed to find enough space for all fluid outputs."); return false; } |