aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java
index 19d64910e1..1fb18ccf50 100644
--- a/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java
+++ b/src/main/java/com/github/technus/tectech/thing/metaTileEntity/multi/base/GT_MetaTileEntity_MultiblockBase_EM.java
@@ -122,6 +122,14 @@ public abstract class GT_MetaTileEntity_MultiblockBase_EM extends GT_MetaTileEnt
//functionality toggles - changed by buttons in gui also
protected boolean ePowerPass = false, eSafeVoid = false;
+ public boolean isPowerPass() {
+ return ePowerPass;
+ }
+
+ public boolean isSafeVoid() {
+ return eSafeVoid;
+ }
+
//max amperes machine can take in after computing it to the lowest tier (exchange packets to min tier count)
protected long eMaxAmpereFlow = 0,eMaxAmpereGen=0;