aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util
diff options
context:
space:
mode:
authorGlease <4586901+Glease@users.noreply.github.com>2022-12-14 14:48:34 +0800
committerGitHub <noreply@github.com>2022-12-14 07:48:34 +0100
commit2417dbcf73b6b8ebccb40baf850986981efb9788 (patch)
tree45aa9f0910e9c7b9701eea5ac293923ed9612a28 /src/main/java/gregtech/api/util
parent8a515c7a9f83ca0fe29098d50bc7cab30e137d35 (diff)
downloadGT5-Unofficial-2417dbcf73b6b8ebccb40baf850986981efb9788.tar.gz
GT5-Unofficial-2417dbcf73b6b8ebccb40baf850986981efb9788.tar.bz2
GT5-Unofficial-2417dbcf73b6b8ebccb40baf850986981efb9788.zip
make covers actually insensitive to redstone if it doesn't need it (#1546)
* make covers actually insensitive to redstone if it doesn't need it Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> * fix machine controller redstone sensitivity Signed-off-by: Glease <4586901+Glease@users.noreply.github.com> Signed-off-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/api/util')
-rw-r--r--src/main/java/gregtech/api/util/GT_CoverBehaviorBase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_CoverBehaviorBase.java b/src/main/java/gregtech/api/util/GT_CoverBehaviorBase.java
index b793a9b489..cfa9b593fa 100644
--- a/src/main/java/gregtech/api/util/GT_CoverBehaviorBase.java
+++ b/src/main/java/gregtech/api/util/GT_CoverBehaviorBase.java
@@ -585,7 +585,7 @@ public abstract class GT_CoverBehaviorBase<T extends ISerializableObject> {
protected boolean isRedstoneSensitiveImpl(
byte aSide, int aCoverID, T aCoverVariable, ICoverable aTileEntity, long aTimer) {
- return true;
+ return false;
}
/**