diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-05-08 21:13:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 21:13:11 +0200 |
commit | 64ffd48ac791019ce4e4a610541b143a4c9d9b44 (patch) | |
tree | ec231583b75aa432061ab22604001e09c25633de /src/main/java/at/hannibal2/skyhanni/features/fame | |
parent | bd117b2d181a6abb419021f815e4ad07cc05a37f (diff) | |
download | skyhanni-64ffd48ac791019ce4e4a610541b143a4c9d9b44.tar.gz skyhanni-64ffd48ac791019ce4e4a610541b143a4c9d9b44.tar.bz2 skyhanni-64ffd48ac791019ce4e4a610541b143a4c9d9b44.zip |
Improvement: Custom Reminder (#1740)
Co-authored-by: CalMWolfs <94038482+CalMWolfs@users.noreply.github.com>
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/fame')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/fame/ReminderUtils.kt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/fame/ReminderUtils.kt b/src/main/java/at/hannibal2/skyhanni/features/fame/ReminderUtils.kt index 8566d6257..0cd7bc0da 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/fame/ReminderUtils.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/fame/ReminderUtils.kt @@ -12,5 +12,6 @@ object ReminderUtils { // TODO: add arachne fight, add slayer boss spawned, add dragon fight fun isBusy(ignoreFarmingContest: Boolean = false): Boolean = DungeonAPI.inDungeon() || LorenzUtils.inKuudraFight || (FarmingContestAPI.inContest && !ignoreFarmingContest) || - RiftAPI.inRift() || IslandType.DARK_AUCTION.isInIsland()|| IslandType.MINESHAFT.isInIsland() + RiftAPI.inRift() || IslandType.DARK_AUCTION.isInIsland() || IslandType.MINESHAFT.isInIsland() || + IslandType.NONE.isInIsland() || IslandType.UNKNOWN.isInIsland() } |