aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorGDCloud <93287602+GDCloudstrike@users.noreply.github.com>2024-02-12 23:33:36 +0100
committerGitHub <noreply@github.com>2024-02-12 23:33:36 +0100
commitc309d53417f119cc3239bb4bfcf683f718295786 (patch)
tree90b56ddbbd22f7cb3f4bce0c7694aa7d0221557b /src/main
parentf150358e67c1419b231eb95d479ef832f1ca2776 (diff)
downloadGT5-Unofficial-c309d53417f119cc3239bb4bfcf683f718295786.tar.gz
GT5-Unofficial-c309d53417f119cc3239bb4bfcf683f718295786.tar.bz2
GT5-Unofficial-c309d53417f119cc3239bb4bfcf683f718295786.zip
Add batch mode to nano forge (#2492)
add batch mode
Diffstat (limited to 'src/main')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_NanoForge.java5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_NanoForge.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_NanoForge.java
index 0e32936a26..129627f5e6 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_NanoForge.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_NanoForge.java
@@ -451,4 +451,9 @@ public class GT_MetaTileEntity_NanoForge extends
public boolean supportsInputSeparation() {
return true;
}
+
+ @Override
+ public boolean supportsBatchMode() {
+ return true;
+ }
}