aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/events
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-04-01 21:08:08 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-04-01 21:08:08 +0200
commit1f96d1b4a7e0281fe59e0cb3658c104a5e7a75a4 (patch)
tree4729f47ffb2b82b4a452e8567ab3c94267d798af /src/main/java/at/hannibal2/skyhanni/events
parent8b28b68d6956ae406c0b13abece629a197670edf (diff)
downloadskyhanni-1f96d1b4a7e0281fe59e0cb3658c104a5e7a75a4.tar.gz
skyhanni-1f96d1b4a7e0281fe59e0cb3658c104a5e7a75a4.tar.bz2
skyhanni-1f96d1b4a7e0281fe59e0cb3658c104a5e7a75a4.zip
add more todos after https://github.com/hannibal002/SkyHanni/pull/1264
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/events')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/events/LorenzTickEvent.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/events/LorenzTickEvent.kt b/src/main/java/at/hannibal2/skyhanni/events/LorenzTickEvent.kt
index ba8a30e56..069cae5f8 100644
--- a/src/main/java/at/hannibal2/skyhanni/events/LorenzTickEvent.kt
+++ b/src/main/java/at/hannibal2/skyhanni/events/LorenzTickEvent.kt
@@ -4,5 +4,6 @@ class LorenzTickEvent(private val tick: Int) : LorenzEvent() {
fun isMod(i: Int) = tick % i == 0
+ @Deprecated("Use SecondPassedEvent instead", ReplaceWith(""))
fun repeatSeconds(i: Int) = isMod(i * 20)
}