summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/event
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 20:20:12 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 20:20:12 +0100
commite1ee9ac488dbba5e6898e92bc9ebf93096e671b1 (patch)
tree24387b87d3847fb8fc2b38fe7d6699283f94d9da /src/main/java/at/hannibal2/skyhanni/features/event
parentfc19b7274edc318de60bc9628f1e87d36f285c63 (diff)
downloadskyhanni-e1ee9ac488dbba5e6898e92bc9ebf93096e671b1.tar.gz
skyhanni-e1ee9ac488dbba5e6898e92bc9ebf93096e671b1.tar.bz2
skyhanni-e1ee9ac488dbba5e6898e92bc9ebf93096e671b1.zip
moved all shdebug stuff into categories
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/event')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/event/diana/BurrowWarpHelper.kt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/event/diana/BurrowWarpHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/event/diana/BurrowWarpHelper.kt
index 396501104..27c7b1b0d 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/event/diana/BurrowWarpHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/event/diana/BurrowWarpHelper.kt
@@ -70,16 +70,16 @@ class BurrowWarpHelper {
event.title("Diana Burrow Nearest Warp")
if (!DianaAPI.isDoingDiana()) {
- event.exit("not doing diana")
+ event.ignore("not doing diana")
return
}
if (!config.burrowNearestWarp) {
- event.exit("disabled in config")
+ event.ignore("disabled in config")
return
}
val target = GriffinBurrowHelper.targetLocation
if (target == null) {
- event.exit("targetLocation is null")
+ event.ignore("targetLocation is null")
return
}