From dfcdcaa0c6aadabdb665d34b74f0eed180600dc8 Mon Sep 17 00:00:00 2001 From: Tec Date: Wed, 17 Jul 2019 10:10:07 +0200 Subject: Can be safely exposed --- .../multi/base/GT_MetaTileEntity_MultiblockBase_EM.java | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) (limited to 'src/main/java') 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 1fb18ccf50..635107ff28 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 @@ -115,20 +115,12 @@ public abstract class GT_MetaTileEntity_MultiblockBase_EM extends GT_MetaTileEnt //if u need to force some things to be fixed - u might need to override doRandomMaintenanceDamage protected byte minRepairStatus = 3; - //endregion - - //region READ ONLY unless u really need to change it - //functionality toggles - changed by buttons in gui also - protected boolean ePowerPass = false, eSafeVoid = false; + public boolean ePowerPass = false, eSafeVoid = false; - public boolean isPowerPass() { - return ePowerPass; - } + //endregion - public boolean isSafeVoid() { - return eSafeVoid; - } + //region READ ONLY unless u really need to change it //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; -- cgit