diff options
author | GlodBlock <60341015+GlodBlock@users.noreply.github.com> | 2021-06-03 19:46:19 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-03 19:46:19 +0800 |
commit | c7a8d969b59d68863f60a0685b49fe9340bff0fd (patch) | |
tree | c325d53c5ba72b77cf32c8e58bfbb27fd70c5099 /src/Java/gtPlusPlus | |
parent | b7997cd0a7faa68c3b4e68a4596e91709b9a9dd1 (diff) | |
download | GT5-Unofficial-c7a8d969b59d68863f60a0685b49fe9340bff0fd.tar.gz GT5-Unofficial-c7a8d969b59d68863f60a0685b49fe9340bff0fd.tar.bz2 GT5-Unofficial-c7a8d969b59d68863f60a0685b49fe9340bff0fd.zip |
a logic bug
Diffstat (limited to 'src/Java/gtPlusPlus')
-rw-r--r-- | src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_AirIntake.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_AirIntake.java b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_AirIntake.java index 3a0c101375..7dd6dea8bc 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_AirIntake.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/api/metatileentity/implementations/GT_MetaTileEntity_Hatch_AirIntake.java @@ -210,7 +210,7 @@ public class GT_MetaTileEntity_Hatch_AirIntake extends GT_MetaTileEntity_Hatch_I return true; } } - return false; + return true; } public boolean addAirToHatch(long aTick) { @@ -285,4 +285,4 @@ public class GT_MetaTileEntity_Hatch_AirIntake extends GT_MetaTileEntity_Hatch_I public int fill_default(ForgeDirection aSide, FluidStack aFluid, boolean doFill) { return 0; } -}
\ No newline at end of file +} |