From dfe9319d6bb1befe4e6338d0f8f5f9ddd05a991c Mon Sep 17 00:00:00 2001 From: Reflex18 <127531099+Reflex18@users.noreply.github.com> Date: Thu, 29 Feb 2024 05:14:20 +1000 Subject: Fixing power checks from telsa tower (#271) changed check to 10 ticks from 10 seconds to fix power failing on server starting. --- .../com/github/technus/tectech/thing/cover/GT_Cover_TM_TeslaCoil.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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() { -- cgit