aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorReflex18 <127531099+Reflex18@users.noreply.github.com>2024-02-29 05:14:20 +1000
committerGitHub <noreply@github.com>2024-02-28 20:14:20 +0100
commitdfe9319d6bb1befe4e6338d0f8f5f9ddd05a991c (patch)
tree2336c915ab99470d076fad62518511a5107bf900 /src
parent3ecc0cdab0584c4af7607d5a814c240136178aae (diff)
downloadGT5-Unofficial-dfe9319d6bb1befe4e6338d0f8f5f9ddd05a991c.tar.gz
GT5-Unofficial-dfe9319d6bb1befe4e6338d0f8f5f9ddd05a991c.tar.bz2
GT5-Unofficial-dfe9319d6bb1befe4e6338d0f8f5f9ddd05a991c.zip
Fixing power checks from telsa tower (#271)
changed check to 10 ticks from 10 seconds to fix power failing on server starting.
Diffstat (limited to 'src')
-rw-r--r--src/main/java/com/github/technus/tectech/thing/cover/GT_Cover_TM_TeslaCoil.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/com/github/technus/tectech/thing/cover/GT_Cover_TM_TeslaCoil.java b/src/main/java/com/github/technus/tectech/thing/cover/GT_Cover_TM_TeslaCoil.java
index dd3cc52cb6..7fab22c9b2 100644
--- a/src/main/java/com/github/technus/tectech/thing/cover/GT_Cover_TM_TeslaCoil.java
+++ b/src/main/java/com/github/technus/tectech/thing/cover/GT_Cover_TM_TeslaCoil.java
@@ -52,8 +52,8 @@ public class GT_Cover_TM_TeslaCoil extends GT_CoverBehavior {
@Override
public int getTickRate(ForgeDirection side, int aCoverID, int aCoverVariable, ICoverable aTileEntity) {
- // It updates once every 200 ticks, so once every 10 seconds
- return 200;
+ // It updates once every 10 ticks, so once every 0.5 second
+ return 10;
}
public byte getTeslaReceptionCapability() {