diff options
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() { |