aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-08-14 13:36:22 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-08-14 13:36:22 +0200
commite24a57aa63d6a0d8a108b41216eef474d5dd6cb0 (patch)
tree33621b8340743daa0dce6dd5270c398d8c557cdf /src
parenta1cf60ae2003cb62729089184f6d79072ca902ca (diff)
downloadskyhanni-e24a57aa63d6a0d8a108b41216eef474d5dd6cb0.tar.gz
skyhanni-e24a57aa63d6a0d8a108b41216eef474d5dd6cb0.tar.bz2
skyhanni-e24a57aa63d6a0d8a108b41216eef474d5dd6cb0.zip
fix tab list not found error message getting sent too often
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/HypixelData.kt2
1 files changed, 1 insertions, 1 deletions
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()
}
}