From 6c392df7d93a4bd7bc95f66204a91e16a37867f9 Mon Sep 17 00:00:00 2001 From: Alexandre Tardif Date: Mon, 10 Jul 2023 15:31:22 -0400 Subject: Remove rotation limitation on the LSC --- .../java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/main/java/common') diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 846f783f49..8815ee6387 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -338,11 +338,6 @@ public class GTMTE_LapotronicSuperCapacitor return STRUCTURE_DEFINITION; } - @Override - protected IAlignmentLimits getInitialAlignmentLimits() { - return (d, r, f) -> d.offsetY == 0 && r.isNotRotated() && !f.isVerticallyFliped(); - } - private void processInputHatch(GT_MetaTileEntity_Hatch aHatch, int aBaseCasingIndex) { mMaxEUIn += aHatch.maxEUInput() * aHatch.maxAmperesIn(); aHatch.updateTexture(aBaseCasingIndex); -- cgit From b5eb850d94c39a75356d87d4c5b9f4e7e74d7988 Mon Sep 17 00:00:00 2001 From: Alexandre Tardif Date: Mon, 10 Jul 2023 15:33:59 -0400 Subject: Spotless Apply --- src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java | 1 - 1 file changed, 1 deletion(-) (limited to 'src/main/java/common') diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 8815ee6387..a394d14bbe 100644 --- a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java +++ b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java @@ -55,7 +55,6 @@ import com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_H import com.github.technus.tectech.thing.metaTileEntity.hatch.GT_MetaTileEntity_Hatch_EnergyTunnel; import com.google.common.collect.ImmutableList; import com.gtnewhorizon.structurelib.StructureLibAPI; -import com.gtnewhorizon.structurelib.alignment.IAlignmentLimits; import com.gtnewhorizon.structurelib.alignment.constructable.ChannelDataAccessor; import com.gtnewhorizon.structurelib.alignment.constructable.ISurvivalConstructable; import com.gtnewhorizon.structurelib.structure.IItemSource; -- cgit