aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYang Xizhi <60341015+GlodBlock@users.noreply.github.com>2022-10-16 15:15:32 +0800
committerGitHub <noreply@github.com>2022-10-16 09:15:32 +0200
commit153f6ff61895729cc7441ee9d4c320ff35099bc0 (patch)
tree045a1c994f235a05976c76d1b6ad92d7d1de6d58
parent434c79e4c6bfc544ad46267ec40706fd3cdee59e (diff)
downloadGT5-Unofficial-153f6ff61895729cc7441ee9d4c320ff35099bc0.tar.gz
GT5-Unofficial-153f6ff61895729cc7441ee9d4c320ff35099bc0.tar.bz2
GT5-Unofficial-153f6ff61895729cc7441ee9d4c320ff35099bc0.zip
fix missing hatch element (#92)
* fix missing hatch element * spotlessApply (#93) Co-authored-by: Yang Xizhi <60341015+GlodBlock@users.noreply.github.com> Co-authored-by: GitHub GTNH Actions <> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java b/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java
index a524146fed..41e4ad6124 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java
@@ -213,7 +213,10 @@ public class NeutronActivator extends GT_MetaTileEntity_TooltipMultiBlockBase_EM
'C',
ofChain(
buildHatchAdder(NeutronActivator.class)
- .atLeast(GT_HatchElement.InputHatch, GT_HatchElement.InputBus)
+ .atLeast(
+ GT_HatchElement.InputHatch,
+ GT_HatchElement.InputBus,
+ GT_HatchElement.Maintenance)
.casingIndex(49)
.dot(1)
.build(),
@@ -230,6 +233,7 @@ public class NeutronActivator extends GT_MetaTileEntity_TooltipMultiBlockBase_EM
.atLeast(
GT_HatchElement.OutputHatch,
GT_HatchElement.OutputBus,
+ GT_HatchElement.Maintenance,
NeutronHatchElement.NeutronAccelerator,
NeutronHatchElement.NeutronSensor)
.casingIndex(49)