diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-10-01 19:33:39 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-10-01 19:33:39 +0200 |
commit | 65ef886e2e649a86f395572d1f8f127874ef6d5f (patch) | |
tree | 2237961881fe01bb15730b270c83c3b951c836b2 /src/main | |
parent | 3f751c8d46479c7f7c07840eca0e28b43e7d3a23 (diff) | |
download | skyhanni-65ef886e2e649a86f395572d1f8f127874ef6d5f.tar.gz skyhanni-65ef886e2e649a86f395572d1f8f127874ef6d5f.tar.bz2 skyhanni-65ef886e2e649a86f395572d1f8f127874ef6d5f.zip |
formatting
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/rift/area/dreadfarm/WoodenButtonsHelper.kt | 7 | ||||
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt | 6 |
2 files changed, 11 insertions, 2 deletions
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 }) } } } |