diff options
author | MadMan310 <66886359+MadMan310@users.noreply.github.com> | 2023-07-21 01:21:18 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-21 10:21:18 +0200 |
commit | bf7f9ca4f25d367759f55641ad4fd03458e4b96d (patch) | |
tree | 1abec7c8677d084879ab90a8440d82d0d7dcaca2 | |
parent | c0edd47a369b8133e4fb6a89f7b12b976b40da30 (diff) | |
download | GT5-Unofficial-bf7f9ca4f25d367759f55641ad4fd03458e4b96d.tar.gz GT5-Unofficial-bf7f9ca4f25d367759f55641ad4fd03458e4b96d.tar.bz2 GT5-Unofficial-bf7f9ca4f25d367759f55641ad4fd03458e4b96d.zip |
Fix incorrect multiblock preview hint for CoAL (#181)
-rw-r--r-- | src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java | 10 |
1 files 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(); |