aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/common/tileentities/machines
diff options
context:
space:
mode:
authorGlease <4586901+Glease@users.noreply.github.com>2024-11-30 01:09:58 +0800
committerGitHub <noreply@github.com>2024-11-29 17:09:58 +0000
commit1002b9646309c445de785f997090193bfd9f1b45 (patch)
tree1fb33d609f0c2d963ceea193ac644b455b79d8fd /src/main/java/gregtech/common/tileentities/machines
parent8bde616826088a5307cde9025f6f274c85614754 (diff)
downloadGT5-Unofficial-1002b9646309c445de785f997090193bfd9f1b45.tar.gz
GT5-Unofficial-1002b9646309c445de785f997090193bfd9f1b45.tar.bz2
GT5-Unofficial-1002b9646309c445de785f997090193bfd9f1b45.zip
remove maintenance hatch from TPM NEI preview (#3570)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Maya <10861407+serenibyss@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/common/tileentities/machines')
-rw-r--r--src/main/java/gregtech/common/tileentities/machines/multi/MTETranscendentPlasmaMixer.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/MTETranscendentPlasmaMixer.java b/src/main/java/gregtech/common/tileentities/machines/multi/MTETranscendentPlasmaMixer.java
index d0262198fa..32f5c33dfb 100644
--- a/src/main/java/gregtech/common/tileentities/machines/multi/MTETranscendentPlasmaMixer.java
+++ b/src/main/java/gregtech/common/tileentities/machines/multi/MTETranscendentPlasmaMixer.java
@@ -40,6 +40,7 @@ import net.minecraftforge.common.util.ForgeDirection;
import org.jetbrains.annotations.NotNull;
+import com.google.common.collect.ImmutableMap;
import com.gtnewhorizon.structurelib.alignment.constructable.ISurvivalConstructable;
import com.gtnewhorizon.structurelib.structure.IStructureDefinition;
import com.gtnewhorizon.structurelib.structure.ISurvivalBuildEnvironment;
@@ -89,7 +90,8 @@ public class MTETranscendentPlasmaMixer extends MTEEnhancedMultiBlockBase<MTETra
.addShape(STRUCTURE_PIECE_MAIN, structure)
.addElement(
'B',
- buildHatchAdder(MTETranscendentPlasmaMixer.class).atLeast(InputHatch, OutputHatch, InputBus, Maintenance)
+ buildHatchAdder(MTETranscendentPlasmaMixer.class)
+ .atLeast(ImmutableMap.of(InputHatch, 2, OutputHatch, 1, InputBus, 1, Maintenance, 0))
.casingIndex(DIM_INJECTION_CASING)
.dot(1)
.buildAndChain(GregTechAPI.sBlockCasings1, DIM_INJECTION_CASING))