From bf7f9ca4f25d367759f55641ad4fd03458e4b96d Mon Sep 17 00:00:00 2001 From: MadMan310 <66886359+MadMan310@users.noreply.github.com> Date: Fri, 21 Jul 2023 01:21:18 -0700 Subject: Fix incorrect multiblock preview hint for CoAL (#181) --- .../goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java b/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java index 88527f803e..32198b6ab5 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java @@ -147,23 +147,23 @@ public class ComponentAssemblyLine extends GT_MetaTileEntity_ExtendedPowerMultiB .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'N', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputBus).dot(2) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputBus).dot(1) .casingIndex(183).buildAndChain(GT_StructureUtility.ofFrame(Materials.TungstenSteel))) .addElement( 'K', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(OutputBus).dot(3) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(OutputBus).dot(2) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'L', GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(Energy, ExoticEnergy) - .dot(4).casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) + .dot(3).casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'I', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(Maintenance).dot(5) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(Maintenance).dot(4) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'M', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputHatch).dot(6) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputHatch).dot(5) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement('n', GT_StructureUtility.ofFrame(Materials.TungstenSteel)).build(); -- cgit