From 153f6ff61895729cc7441ee9d4c320ff35099bc0 Mon Sep 17 00:00:00 2001 From: Yang Xizhi <60341015+GlodBlock@users.noreply.github.com> Date: Sun, 16 Oct 2022 15:15:32 +0800 Subject: 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> --- src/main/java/goodgenerator/blocks/tileEntity/NeutronActivator.java | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/main/java/goodgenerator/blocks/tileEntity') 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) -- cgit