diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-14 00:33:35 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-14 00:33:35 +0100 |
commit | c896b72c3f848e2bad54bc5545a189bf1466d515 (patch) | |
tree | 2064606d81f558a48b5e1fe6a391da6f95c3598f /src/main | |
parent | 4c12e4496fc3f6f49430a425cac52ce0b62b3fe5 (diff) | |
download | skyhanni-c896b72c3f848e2bad54bc5545a189bf1466d515.tar.gz skyhanni-c896b72c3f848e2bad54bc5545a189bf1466d515.tar.bz2 skyhanni-c896b72c3f848e2bad54bc5545a189bf1466d515.zip |
Fixed closest burrow warp point being off, especially for castle.
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt index 14422e6b4..545c34afd 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/GriffinBurrowHelper.kt @@ -57,7 +57,7 @@ object GriffinBurrowHelper { targetLocation = location if (config.burrowNearestWarp) { - BurrowWarpHelper.shouldUseWarps(location) + BurrowWarpHelper.shouldUseWarps(findBlock(location)) } if (config.burrowsNearbyDetection) { checkRemoveGuess(false) |