aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java
diff options
context:
space:
mode:
authorMaya <10861407+serenibyss@users.noreply.github.com>2024-12-01 05:56:00 -0600
committerGitHub <noreply@github.com>2024-12-01 12:56:00 +0100
commitfd1becc546c966bf7894849c843f1dcc0919618b (patch)
treebf82d856f0b744ce89bfcc40dc8b7118bb2b2081 /src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java
parentdc8102edbdb28529beeb5bf762c378f766c1243d (diff)
downloadGT5-Unofficial-fd1becc546c966bf7894849c843f1dcc0919618b.tar.gz
GT5-Unofficial-fd1becc546c966bf7894849c843f1dcc0919618b.tar.bz2
GT5-Unofficial-fd1becc546c966bf7894849c843f1dcc0919618b.zip
Fix ME Output Hatch void protection checks (#3585)
Diffstat (limited to 'src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java')
-rw-r--r--src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java b/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java
index 875148d9b6..2a5e3c1552 100644
--- a/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java
+++ b/src/main/java/gregtech/api/metatileentity/implementations/MTEMultiBlockBase.java
@@ -109,7 +109,6 @@ import gregtech.common.tileentities.machines.MTEHatchCraftingInputME;
import gregtech.common.tileentities.machines.MTEHatchInputBusME;
import gregtech.common.tileentities.machines.MTEHatchInputME;
import gregtech.common.tileentities.machines.MTEHatchOutputBusME;
-import gregtech.common.tileentities.machines.MTEHatchOutputME;
import gregtech.common.tileentities.machines.multi.MTELargeTurbine;
import it.unimi.dsi.fastutil.objects.Object2ReferenceOpenHashMap;
import it.unimi.dsi.fastutil.objects.Reference2ReferenceOpenHashMap;
@@ -2291,18 +2290,6 @@ public abstract class MTEMultiBlockBase extends MetaTileEntity
}
@Override
- public boolean canDumpFluidToME() {
- for (IFluidStore tHatch : getFluidOutputSlots(new FluidStack[0])) {
- if (tHatch instanceof MTEHatchOutputME) {
- if ((((MTEHatchOutputME) tHatch).canAcceptFluid())) {
- return true;
- }
- }
- }
- return false;
- }
-
- @Override
public Pos2d getVoidingModeButtonPos() {
return new Pos2d(8, 91);
}