aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorAbdiel Kavash <19243993+AbdielKavash@users.noreply.github.com>2024-01-22 16:07:38 -0600
committerGitHub <noreply@github.com>2024-01-22 23:07:38 +0100
commitd51387ace66294dc455c10079035c54c1a4d9594 (patch)
tree38522ccc672310853724581f88e4f7a0b120c7ff /src/main/java
parent8fc15651f5377677cb73cbe6db8d01a3388ec496 (diff)
downloadGT5-Unofficial-d51387ace66294dc455c10079035c54c1a4d9594.tar.gz
GT5-Unofficial-d51387ace66294dc455c10079035c54c1a4d9594.tar.bz2
GT5-Unofficial-d51387ace66294dc455c10079035c54c1a4d9594.zip
Remove muffler from Dissolution Tank. (#85)
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/elisis/gtnhlanth/common/tileentity/DissolutionTank.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main/java/com/elisis/gtnhlanth/common/tileentity/DissolutionTank.java b/src/main/java/com/elisis/gtnhlanth/common/tileentity/DissolutionTank.java
index 152a69b240..2432ead38c 100644
--- a/src/main/java/com/elisis/gtnhlanth/common/tileentity/DissolutionTank.java
+++ b/src/main/java/com/elisis/gtnhlanth/common/tileentity/DissolutionTank.java
@@ -8,7 +8,6 @@ import static gregtech.api.enums.GT_HatchElement.Energy;
import static gregtech.api.enums.GT_HatchElement.InputBus;
import static gregtech.api.enums.GT_HatchElement.InputHatch;
import static gregtech.api.enums.GT_HatchElement.Maintenance;
-import static gregtech.api.enums.GT_HatchElement.Muffler;
import static gregtech.api.enums.GT_HatchElement.OutputBus;
import static gregtech.api.enums.GT_HatchElement.OutputHatch;
import static gregtech.api.enums.Textures.BlockIcons.OVERLAY_FRONT_OIL_CRACKER;
@@ -59,8 +58,8 @@ public class DissolutionTank extends GT_MetaTileEntity_EnhancedMultiBlockBase<Di
.addElement(
's',
buildHatchAdder(DissolutionTank.class)
- .atLeast(InputHatch, OutputHatch, InputBus, OutputBus, Maintenance, Energy, Muffler)
- .casingIndex(49).dot(1).buildAndChain(GregTech_API.sBlockCasings4, 1))
+ .atLeast(InputHatch, OutputHatch, InputBus, OutputBus, Maintenance, Energy).casingIndex(49)
+ .dot(1).buildAndChain(GregTech_API.sBlockCasings4, 1))
.addElement('h', ofBlock(GregTech_API.sBlockCasings1, 11))
.addElement('g', ofBlockAdder(DissolutionTank::addGlass, ItemRegistry.bw_glasses[0], 1)).build();