From f922ef4f62790c65dd22c94bb3c6a39c678dad3a Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:10:27 +0200 Subject: fixed display flickering on setting new target --- src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt b/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt index 9e4639454..62459b6da 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/IslandGraphs.kt @@ -188,6 +188,7 @@ object IslandGraphs { } fun setNewGraph(graph: Graph) { + IslandAreas.display = null reset() currentIslandGraph = graph @@ -204,7 +205,6 @@ object IslandGraphs { currentTarget = null goal = null fastestPath = null - IslandAreas.display = null } @SubscribeEvent -- cgit