diff options
| author | Alexia <me@alexia.lol> | 2024-02-24 00:08:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-24 00:08:52 +0100 |
| commit | 972d07c2631d99d0b3e46ea66eecf0825d4e038c (patch) | |
| tree | 01218570da26c36ed7ba60fbdc526d45282c984f /src/main/java/at/hannibal2/skyhanni/features/event | |
| parent | 4a542542f7887880152782da2ec0aca272260087 (diff) | |
| download | skyhanni-972d07c2631d99d0b3e46ea66eecf0825d4e038c.tar.gz skyhanni-972d07c2631d99d0b3e46ea66eecf0825d4e038c.tar.bz2 skyhanni-972d07c2631d99d0b3e46ea66eecf0825d4e038c.zip | |
Fixed rare profile detection bugs. Changed PreProfileSwitchEvent to ProfileJoinEvent. #868
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/winter/JyrreTimer.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/winter/JyrreTimer.kt b/src/main/java/at/hannibal2/skyhanni/features/event/winter/JyrreTimer.kt index 2839797f6..19c3f578e 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/winter/JyrreTimer.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/winter/JyrreTimer.kt @@ -3,7 +3,7 @@ package at.hannibal2.skyhanni.features.event.winter import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.events.GuiRenderEvent import at.hannibal2.skyhanni.events.LorenzChatEvent -import at.hannibal2.skyhanni.events.PreProfileSwitchEvent +import at.hannibal2.skyhanni.events.ProfileJoinEvent import at.hannibal2.skyhanni.test.command.ErrorManager import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.NEUInternalName.Companion.asInternalName @@ -39,7 +39,7 @@ class JyrreTimer { } @SubscribeEvent - fun onPreProfileSwitch(event: PreProfileSwitchEvent) { + fun onProfileJoin(event: ProfileJoinEvent) { resetDisplay() } |
