From 65ef886e2e649a86f395572d1f8f127874ef6d5f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 1 Oct 2024 19:33:39 +0200 Subject: formatting --- .../skyhanni/features/rift/area/dreadfarm/WoodenButtonsHelper.kt | 7 ++++++- .../skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt | 6 +++++- 2 files changed, 11 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2') diff --git a/src/main/java/at/hannibal2/skyhanni/features/rift/area/dreadfarm/WoodenButtonsHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/rift/area/dreadfarm/WoodenButtonsHelper.kt index d2413cc3a..92e6c2014 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/rift/area/dreadfarm/WoodenButtonsHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/rift/area/dreadfarm/WoodenButtonsHelper.kt @@ -95,7 +95,12 @@ object WoodenButtonsHelper { if (closestNode != currentSpot) { currentSpot = closestNode currentSpot?.let { - IslandGraphs.pathFind(it.position, "Button Spot", config.color.toChromaColor(), condition = { config.showPathFinder && config.showButtonsHelper }) + IslandGraphs.pathFind( + it.position, + "Button Spot", + config.color.toChromaColor(), + condition = { config.showPathFinder && config.showButtonsHelper }, + ) } } } diff --git a/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt b/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt index fc0856be6..6fadfce8f 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt @@ -120,7 +120,11 @@ object EnigmaSoulWaypoints { if (config.showPathFinder) { soulLocations[name]?.let { if (!(name == "Buttons" && WoodenButtonsHelper.showButtons())) { - IslandGraphs.pathFind(it, "$name Enigma Soul", config.color.toChromaColor(), condition = { config.showPathFinder }) + IslandGraphs.pathFind( + it, + "$name Enigma Soul", + config.color.toChromaColor(), + condition = { config.showPathFinder }) } } } -- cgit