diff options
author | boubou19 <miisterunknown@gmail.com> | 2023-03-12 13:58:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-12 14:58:35 +0200 |
commit | 2775a8bd3277c4bc96cf44147511feeaa362dbd4 (patch) | |
tree | 8cccd3efceecd5add98708bb9d19b4a82e7488ba /src | |
parent | e4dc9e0800c3827e9a4361c5b352ee32046e3303 (diff) | |
download | GT5-Unofficial-2775a8bd3277c4bc96cf44147511feeaa362dbd4.tar.gz GT5-Unofficial-2775a8bd3277c4bc96cf44147511feeaa362dbd4.tar.bz2 GT5-Unofficial-2775a8bd3277c4bc96cf44147511feeaa362dbd4.zip |
follow up to https://github.com/GTNewHorizons/GTplusplus/pull/564 (#565)
* set the amount of muffler hatches to 1 in the MABS
* change tooltip
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/GregTechMetaTileEntity_MegaAlloyBlastSmelter.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/GregTechMetaTileEntity_MegaAlloyBlastSmelter.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/GregTechMetaTileEntity_MegaAlloyBlastSmelter.java index 897ddab5d3..90a40a0213 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/GregTechMetaTileEntity_MegaAlloyBlastSmelter.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/mega/GregTechMetaTileEntity_MegaAlloyBlastSmelter.java @@ -208,7 +208,7 @@ public class GregTechMetaTileEntity_MegaAlloyBlastSmelter if (!checkPiece("main", 5, 16, 0)) return false; if (hasNormalCoils) coilLevel = HeatingCoilLevel.None; if (mMaintenanceHatches.size() != 1) return false; - if (mMufflerHatches.size() != 45) return false; + if (mMufflerHatches.size() != 1) return false; if (this.glassTier < 10 && !getExoticAndNormalEnergyHatchList().isEmpty()) { for (GT_MetaTileEntity_Hatch hatchEnergy : getExoticAndNormalEnergyHatchList()) { if (this.glassTier < hatchEnergy.mTier) { @@ -309,7 +309,7 @@ public class GregTechMetaTileEntity_MegaAlloyBlastSmelter "Input Bus, Output Bus, Input Hatch, Output Bus, Energy Hatch", "Bottom Casing", 1) - .addMufflerHatch("At least 45", 3).toolTipFinisher( + .addMufflerHatch("1 in the center of the top layer", 3).toolTipFinisher( EnumChatFormatting.AQUA + "MadMan310 " + EnumChatFormatting.GRAY + "via " |