From e1ee9ac488dbba5e6898e92bc9ebf93096e671b1 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Thu, 18 Jan 2024 20:20:12 +0100 Subject: moved all shdebug stuff into categories --- .../at/hannibal2/skyhanni/features/event/diana/BurrowWarpHelper.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features/event') 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 } -- cgit