From e24a57aa63d6a0d8a108b41216eef474d5dd6cb0 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 14 Aug 2024 13:36:22 +0200 Subject: fix tab list not found error message getting sent too often --- src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java') diff --git a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt index bc43a807e..14aa579ca 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt @@ -290,10 +290,10 @@ object HypixelData { } if (message.startsWith("you are playing on profile:")) { val newProfile = message.replace("you are playing on profile:", "").replace("(co-op)", "").trim() + ProfileStorageData.profileJoinMessage() if (profileName == newProfile) return profileName = newProfile ProfileJoinEvent(newProfile).postAndCatch() - ProfileStorageData.profileJoinMessage() } } -- cgit