diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-18 21:32:19 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2024-01-18 21:32:19 +0100 |
| commit | 1bf29e31e35c4eb1a40fe0a7dfd111955ef48322 (patch) | |
| tree | 7abc0d2666e250c63f6f1f044a8386950bf365ed /src/main/java/at/hannibal2/skyhanni/features | |
| parent | 1a2abbef994d493d9e7d3c8dc421dc5b2f47e342 (diff) | |
| download | skyhanni-1bf29e31e35c4eb1a40fe0a7dfd111955ef48322.tar.gz skyhanni-1bf29e31e35c4eb1a40fe0a7dfd111955ef48322.tar.bz2 skyhanni-1bf29e31e35c4eb1a40fe0a7dfd111955ef48322.zip | |
renamed ignore to irrelevant
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features')
3 files changed, 5 insertions, 5 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt index 7657a27e4..af3518141 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonAPI.kt @@ -226,7 +226,7 @@ class DungeonAPI { event.title("Dungeon") if (!LorenzUtils.inDungeons) { - event.ignore("not in dungeons") + event.addIrrelevant("not in dungeons") return } 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 27c7b1b0d..1b9e12195 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.ignore("not doing diana") + event.addIrrelevant("not doing diana") return } if (!config.burrowNearestWarp) { - event.ignore("disabled in config") + event.addIrrelevant("disabled in config") return } val target = GriffinBurrowHelper.targetLocation if (target == null) { - event.ignore("targetLocation is null") + event.addIrrelevant("targetLocation is null") return } diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt index 6a9ef7c8c..0fcb4c4b2 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/visitor/GardenVisitorFeatures.kt @@ -616,7 +616,7 @@ class GardenVisitorFeatures { event.title("Garden Visitor Stats") if (!GardenAPI.inGarden()) { - event.ignore("not in garden") + event.addIrrelevant("not in garden") return } |
