From 7515c6048c5fcee27af394ace02ba35256d10106 Mon Sep 17 00:00:00 2001 From: nea Date: Wed, 6 Sep 2023 01:57:18 +0200 Subject: Fix fairy soul waypoints showing incorrectly after warping into limbo --- src/main/kotlin/moe/nea/firmament/util/SBData.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/kotlin/moe/nea/firmament/util/SBData.kt b/src/main/kotlin/moe/nea/firmament/util/SBData.kt index fdec432..348f048 100644 --- a/src/main/kotlin/moe/nea/firmament/util/SBData.kt +++ b/src/main/kotlin/moe/nea/firmament/util/SBData.kt @@ -65,7 +65,9 @@ object SBData { } WorldReadyEvent.subscribe { + val lastLocraw = locraw locraw = null + SkyblockServerUpdateEvent.publish(SkyblockServerUpdateEvent(lastLocraw, null)) hasSentLocraw = false hasReceivedProfile = false profileId = null -- cgit