aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/event
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-09-29 11:14:10 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-09-29 11:14:10 +0200
commit3569dec0ab32c357eb34cff79c200f379f3d19ce (patch)
treeeb266d940d253964d953cfca5563df9c27e5b0b0 /src/main/java/at/hannibal2/skyhanni/features/event
parente70a67bd5f4e0f0ca17bb1dd836a857b03c30cca (diff)
downloadskyhanni-3569dec0ab32c357eb34cff79c200f379f3d19ce.tar.gz
skyhanni-3569dec0ab32c357eb34cff79c200f379f3d19ce.tar.bz2
skyhanni-3569dec0ab32c357eb34cff79c200f379f3d19ce.zip
made path find condition not optional
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggLocator.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggLocator.kt b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggLocator.kt
index dbe06fbf9..7a5e726d2 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggLocator.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/event/hoppity/HoppityEggLocator.kt
@@ -333,7 +333,7 @@ object HoppityEggLocator {
HoppityEggLocations.apiEggLocations[LorenzUtils.skyBlockIsland]?.let {
for ((i, location) in it.values.withIndex()) {
if (i == target) {
- IslandGraphs.pathFind(location, "Hoppity Test")
+ IslandGraphs.pathFind(location, "Hoppity Test", condition = { true })
return
}
}