From 84d5eb8e5b024bab7a4235ad810473b3765383a6 Mon Sep 17 00:00:00 2001 From: miozune Date: Tue, 17 Jan 2023 00:24:20 +0900 Subject: Remove muffler hatch from the list of valid hatches for Flotation Cell and fix dimension of the structure on tooltip (#503) --- .../machines/multi/production/GregtechMTE_FrothFlotationCell.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod') diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java index 3fdf0a9651..1c18f923be 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java @@ -66,7 +66,7 @@ public class GregtechMTE_FrothFlotationCell extends GregtechMeta_MultiBlockBase< .addInfo("You can only ever process one type of material per controller") .addPollutionAmount(getPollutionPerSecond(null)) .addSeparator() - .beginStructureBlock(3, 9, 3, true) + .beginStructureBlock(7, 9, 7, true) .addController("Front Center") .addCasingInfo("Inconel Reinforced Casing", 68) .addCasingInfo("Flotation Casing", 52) @@ -132,7 +132,7 @@ public class GregtechMTE_FrothFlotationCell extends GregtechMeta_MultiBlockBase< .addElement( 'C', buildHatchAdder(GregtechMTE_FrothFlotationCell.class) - .atLeast(InputBus, InputHatch, OutputHatch, Maintenance, Energy, Muffler) + .atLeast(InputBus, InputHatch, OutputHatch, Maintenance, Energy) .casingIndex(getCasingTextureId()) .dot(1) .buildAndChain( -- cgit