diff options
author | Reflex18 <127531099+Reflex18@users.noreply.github.com> | 2024-02-29 05:14:20 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-28 20:14:20 +0100 |
commit | dfe9319d6bb1befe4e6338d0f8f5f9ddd05a991c (patch) | |
tree | 2336c915ab99470d076fad62518511a5107bf900 /src | |
parent | 3ecc0cdab0584c4af7607d5a814c240136178aae (diff) | |
download | GT5-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.java | 4 |
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() { |