diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2023-10-11 10:48:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 10:48:10 +0200 |
commit | 62e4f2596c695accbe8ee53ddb6636ff893a4448 (patch) | |
tree | 8de97c9d38e1a6754f10a61c99ecc99ab7789c05 /src/main/java/at | |
parent | 31790442bd9f79c605072017b249fe26e749b8a8 (diff) | |
download | skyhanni-62e4f2596c695accbe8ee53ddb6636ff893a4448.tar.gz skyhanni-62e4f2596c695accbe8ee53ddb6636ff893a4448.tar.bz2 skyhanni-62e4f2596c695accbe8ee53ddb6636ff893a4448.zip |
Added another limbo message (#554)
Diffstat (limited to 'src/main/java/at')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/misc/LimboTimeTracker.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/LimboTimeTracker.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/LimboTimeTracker.kt index 395cfcecd..7d4df6626 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/misc/LimboTimeTracker.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/misc/LimboTimeTracker.kt @@ -19,7 +19,7 @@ class LimboTimeTracker { @SubscribeEvent fun onChat(event: LorenzChatEvent) { - if (event.message == "§cYou are AFK. Move around to return from AFK.") { + if (event.message == "§cYou are AFK. Move around to return from AFK." || event.message == "§cYou were spawned in Limbo.") { limboJoinTime = SimpleTimeMark.now() inLimbo = true } |