aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/multitileentity
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-06-11 02:19:54 +0900
committerGitHub <noreply@github.com>2023-06-10 19:19:54 +0200
commit8e3c8829d737d92da5503bd34d0c51130b6b3f00 (patch)
tree54c64a99c847aa900024f065b51a4caf80f61115 /src/main/java/gregtech/api/multitileentity
parent7a4acc4ef1d944a321945b6d565843005fc88dce (diff)
downloadGT5-Unofficial-8e3c8829d737d92da5503bd34d0c51130b6b3f00.tar.gz
GT5-Unofficial-8e3c8829d737d92da5503bd34d0c51130b6b3f00.tar.bz2
GT5-Unofficial-8e3c8829d737d92da5503bd34d0c51130b6b3f00.zip
Enable input separation by default if it's supported (#2072)
Diffstat (limited to 'src/main/java/gregtech/api/multitileentity')
-rw-r--r--src/main/java/gregtech/api/multitileentity/multiblock/base/Controller.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/main/java/gregtech/api/multitileentity/multiblock/base/Controller.java b/src/main/java/gregtech/api/multitileentity/multiblock/base/Controller.java
index 14e7883398..b96a822e4b 100644
--- a/src/main/java/gregtech/api/multitileentity/multiblock/base/Controller.java
+++ b/src/main/java/gregtech/api/multitileentity/multiblock/base/Controller.java
@@ -132,10 +132,10 @@ public abstract class Controller<T extends Controller<T>> extends MultiTileBasic
private IAlignmentLimits limits = getInitialAlignmentLimits();
private String inventoryName;
private String tankName;
- protected boolean separateInputs = false;
- protected VoidingMode voidingMode = supportsVoidProtection() ? VoidingMode.VOID_NONE : VoidingMode.VOID_ALL;
- protected boolean batchMode = false;
- protected boolean recipeLock = false;
+ protected boolean separateInputs = getDefaultInputSeparationMode();
+ protected VoidingMode voidingMode = getDefaultVoidingMode();
+ protected boolean batchMode = getDefaultBatchMode();
+ protected boolean recipeLock = getDefaultRecipeLockingMode();
/** If this is set to true, the machine will get default WAILA behavior */
protected boolean isSimpleMachine = true;