From 2775a8bd3277c4bc96cf44147511feeaa362dbd4 Mon Sep 17 00:00:00 2001 From: boubou19 Date: Sun, 12 Mar 2023 13:58:35 +0100 Subject: follow up to https://github.com/GTNewHorizons/GTplusplus/pull/564 (#565) * set the amount of muffler hatches to 1 in the MABS * change tooltip --- .../production/mega/GregTechMetaTileEntity_MegaAlloyBlastSmelter.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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 " -- cgit