diff options
author | miozune <miozune@gmail.com> | 2023-01-17 00:24:20 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 16:24:20 +0100 |
commit | 84d5eb8e5b024bab7a4235ad810473b3765383a6 (patch) | |
tree | f171d5271ed7349fa5d87b45f242e3023071f2c1 | |
parent | b7b76c633cc84c3928ba2bbea325afc6e85bdd9a (diff) | |
download | GT5-Unofficial-84d5eb8e5b024bab7a4235ad810473b3765383a6.tar.gz GT5-Unofficial-84d5eb8e5b024bab7a4235ad810473b3765383a6.tar.bz2 GT5-Unofficial-84d5eb8e5b024bab7a4235ad810473b3765383a6.zip |
Remove muffler hatch from the list of valid hatches for Flotation Cell and fix dimension of the structure on tooltip (#503)
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/production/GregtechMTE_FrothFlotationCell.java | 4 |
1 files changed, 2 insertions, 2 deletions
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( |