diff options
author | Runakai1 <48415331+Runakai1@users.noreply.github.com> | 2023-07-10 21:47:22 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-10 21:47:22 +0200 |
commit | c53663a85f114d419c325edbe88107b97a62f4b5 (patch) | |
tree | e7d9c647b059a1e6d4d8b7098abcd558fcba4b23 /src/main | |
parent | c3e82115e6693d820e6bf2d9ce223b83c041ef92 (diff) | |
parent | b5eb850d94c39a75356d87d4c5b9f4e7e74d7988 (diff) | |
download | GT5-Unofficial-c53663a85f114d419c325edbe88107b97a62f4b5.tar.gz GT5-Unofficial-c53663a85f114d419c325edbe88107b97a62f4b5.tar.bz2 GT5-Unofficial-c53663a85f114d419c325edbe88107b97a62f4b5.zip |
Merge pull request #73 from GTNewHorizons/Allow-LSC-Rotation
Allow lsc rotation
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java b/src/main/java/common/tileentities/GTMTE_LapotronicSuperCapacitor.java index 846f783f49..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; @@ -338,11 +337,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); |