diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-09-29 11:14:10 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-09-29 11:14:10 +0200 |
commit | 3569dec0ab32c357eb34cff79c200f379f3d19ce (patch) | |
tree | eb266d940d253964d953cfca5563df9c27e5b0b0 /src/main/java/at/hannibal2/skyhanni/features/event | |
parent | e70a67bd5f4e0f0ca17bb1dd836a857b03c30cca (diff) | |
download | skyhanni-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.kt | 2 |
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 } } |