From 61141181171c0d219cc485a1546255510ac75b20 Mon Sep 17 00:00:00 2001 From: Phineasor <80113803+Phineasor@users.noreply.github.com> Date: Wed, 5 Apr 2023 01:19:43 -0500 Subject: More CoAl fixes (#153) * Change structure check to allow for 2 more input buses with permission form MadMan, will allow for faster automation to help prevent spamming them. * Add energy hatch locations. --- .../blocks/tileEntity/ComponentAssemblyLine.java | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'src/main/java') diff --git a/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java b/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java index 4907f731f3..368f0871d4 100644 --- a/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java +++ b/src/main/java/goodgenerator/blocks/tileEntity/ComponentAssemblyLine.java @@ -53,7 +53,7 @@ public class ComponentAssemblyLine extends GT_MetaTileEntity_LongPowerUsageBase< new String[][] { { " ", " III ", " HHI~IHH ", "HH III HH", "H H", "H H", "H JJJ H", "H JJJ H", "H N N H", "HHHHHHHHH" }, - { " ", " EHHHHHE ", "E E", "H H", "A A", "A A", "A A", + { " ", " ELHHHLE ", "E E", "H H", "A A", "A A", "A A", "A HHH A", "A A", "MHHHHHHHM" }, { " HBH ", " EL LE ", "E E", "HC CH", "AC CA", "AC CA", "A D D A", "A HHH A", "A A", "MHHHHHHHM" }, @@ -110,10 +110,10 @@ public class ComponentAssemblyLine extends GT_MetaTileEntity_LongPowerUsageBase< { " BBB ", " EL LE ", "E GGDGG E", "HGG D GGH", "AG C GA", "AG GA", "AG GA", "AG HHH GA", "AG GA", "MHHHHHHHM" }, { " HBH ", " EL LE ", "E E", "H H", "A A", "A A", "A A", - "A HHH A", "A N N A", "MHHHHHHHM" }, + "A HHH A", "A n n A", "MHHHHHHHM" }, { " HBH ", " EL LE ", "E E", "HC CH", "AC CA", "AC CA", "A D D A", "A HHH A", "A A", "MHHHHHHHM" }, - { " ", " EHHHHHE ", "E E", "H H", "A A", "A A", "A A", + { " ", " ELHHHLE ", "E E", "H H", "A A", "A A", "A A", "A HHH A", "A A", "MHHHHHHHM" }, { " ", " ", " HHHHHHH ", "HH HH", "H H", "H H", "H H", "H H", "H KKK H", "HHHHHHHHH" } }) @@ -144,23 +144,27 @@ public class ComponentAssemblyLine extends GT_MetaTileEntity_LongPowerUsageBase< 'J', GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputBus).dot(1) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) + .addElement( + 'N', + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputBus).dot(2) + .casingIndex(183).buildAndChain(GT_StructureUtility.ofFrame(Materials.TungstenSteel))) .addElement( 'K', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(OutputBus).dot(2) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(OutputBus).dot(3) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'L', GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(Energy, ExoticEnergy) - .dot(3).casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) + .dot(4).casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'I', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(Maintenance).dot(4) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(Maintenance).dot(5) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) .addElement( 'M', - GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputHatch).dot(5) + GT_StructureUtility.buildHatchAdder(ComponentAssemblyLine.class).atLeast(InputHatch).dot(6) .casingIndex(183).buildAndChain(GregTech_API.sBlockCasings8, 7)) - .addElement('N', GT_StructureUtility.ofFrame(Materials.TungstenSteel)).build(); + .addElement('n', GT_StructureUtility.ofFrame(Materials.TungstenSteel)).build(); public ComponentAssemblyLine(int aID, String aName, String aNameRegional) { super(aID, aName, aNameRegional); -- cgit