aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-11 13:25:02 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-11-11 13:25:02 +0100
commit5b5434ccadeb25035235a090de9694eda05e8cd4 (patch)
treef7a2f08e55c2544a6d6aaa102ac77bf509099cb6
parentb5594a9a8744dc2d547393dc7fba27e6452c1af3 (diff)
downloadskyhanni-5b5434ccadeb25035235a090de9694eda05e8cd4.tar.gz
skyhanni-5b5434ccadeb25035235a090de9694eda05e8cd4.tar.bz2
skyhanni-5b5434ccadeb25035235a090de9694eda05e8cd4.zip
marked hotswap debug as broken
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt b/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt
index e3acc25e7..20a0d99a5 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/HotSwapDetection.kt
@@ -13,7 +13,8 @@ object HotSwapDetection {
private var hotswap = false
init {
- fixedRateTimer(name = "skyhanni-tps-counter-seconds", period = 1000L) {
+ // TODO seems broken somehow?
+ fixedRateTimer(name = "skyhanni-hot-swap-detection", period = 1000L) {
val currentTick = MinecraftData.totalTicks
val diff = currentTick - latestTick
latestTick = currentTick