From 62e4f2596c695accbe8ee53ddb6636ff893a4448 Mon Sep 17 00:00:00 2001 From: jani270 <69345714+jani270@users.noreply.github.com> Date: Wed, 11 Oct 2023 10:48:10 +0200 Subject: Added another limbo message (#554) --- src/main/java/at/hannibal2/skyhanni/features/misc/LimboTimeTracker.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at') 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 } -- cgit