aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-10-01 19:33:39 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-10-01 19:33:39 +0200
commit65ef886e2e649a86f395572d1f8f127874ef6d5f (patch)
tree2237961881fe01bb15730b270c83c3b951c836b2 /src/main
parent3f751c8d46479c7f7c07840eca0e28b43e7d3a23 (diff)
downloadskyhanni-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.kt7
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/rift/everywhere/EnigmaSoulWaypoints.kt6
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 })
}
}
}