aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java
diff options
context:
space:
mode:
authorMaya <10861407+serenibyss@users.noreply.github.com>2024-12-02 08:12:05 -0600
committerGitHub <noreply@github.com>2024-12-02 08:12:05 -0600
commit62b6fc8498d754ae388f92b933b656da5f38dee0 (patch)
tree42668955cd42c2bdbd86f55ab860089dd6019341 /src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java
parent8380ef61ad9e688a2d05a9db70aa55b54288fae6 (diff)
downloadGT5-Unofficial-62b6fc8498d754ae388f92b933b656da5f38dee0.tar.gz
GT5-Unofficial-62b6fc8498d754ae388f92b933b656da5f38dee0.tar.bz2
GT5-Unofficial-62b6fc8498d754ae388f92b933b656da5f38dee0.zip
Fix ME output hatch void protection again (#3594)HEADmaster
Diffstat (limited to 'src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java')
-rw-r--r--src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java b/src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java
index f55d71debc..841fd07bba 100644
--- a/src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java
+++ b/src/main/java/gregtech/api/interfaces/tileentity/IVoidable.java
@@ -79,4 +79,11 @@ public interface IVoidable {
* as this might be called every tick and cause lag.
*/
boolean canDumpItemToME();
+
+ /**
+ * @return If this machine has ability to dump fluid outputs to ME network.
+ * This doesn't need to check if it can actually dump to ME,
+ * as this might be called every tick and cause lag.
+ */
+ boolean canDumpFluidToME();
}