diff options
author | Martin Robertz <dream-master@gmx.net> | 2021-07-08 20:05:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 20:05:56 +0200 |
commit | 4cacc1f809298f341c904f0749a965befd3c0dd9 (patch) | |
tree | 29fd6ad45ad2997a8a1cfb98a1272db8b54f6c01 /src/main/java/gregtech/common/covers/GT_Cover_Lens.java | |
parent | d234de0977e1c49f8f6774e2102b7659e3548b04 (diff) | |
parent | 9b5d86f4cdc16e33a594d48744fd21be8f4530ec (diff) | |
download | GT5-Unofficial-4cacc1f809298f341c904f0749a965befd3c0dd9.tar.gz GT5-Unofficial-4cacc1f809298f341c904f0749a965befd3c0dd9.tar.bz2 GT5-Unofficial-4cacc1f809298f341c904f0749a965befd3c0dd9.zip |
Merge pull request #585 from GTNewHorizons/cover-optimization
Diffstat (limited to 'src/main/java/gregtech/common/covers/GT_Cover_Lens.java')
-rw-r--r-- | src/main/java/gregtech/common/covers/GT_Cover_Lens.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main/java/gregtech/common/covers/GT_Cover_Lens.java b/src/main/java/gregtech/common/covers/GT_Cover_Lens.java index 347a6acfcc..37405e6fa8 100644 --- a/src/main/java/gregtech/common/covers/GT_Cover_Lens.java +++ b/src/main/java/gregtech/common/covers/GT_Cover_Lens.java @@ -11,6 +11,11 @@ public class GT_Cover_Lens extends GT_CoverBehavior { } @Override + public boolean isRedstoneSensitive(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity, long aTimer) { + return false; + } + + @Override public byte getLensColor(byte aSide, int aCoverID, int aCoverVariable, ICoverable aTileEntity) { return this.mColor; } |