aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features/fame/ReminderUtils.kt
blob: fd074e66cea7ca6344989246326193d67192f1a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package at.hannibal2.skyhanni.features.fame

import at.hannibal2.skyhanni.features.dungeon.DungeonAPI
import at.hannibal2.skyhanni.features.garden.contest.FarmingContestAPI
import at.hannibal2.skyhanni.features.rift.RiftAPI
import at.hannibal2.skyhanni.utils.LorenzUtils

object ReminderUtils {

    // TODO: add arachne fight, add slayer boss spawned
    fun isBusy(): Boolean =
        DungeonAPI.inDungeon() || LorenzUtils.inKuudraFight || FarmingContestAPI.inContest || RiftAPI.inRift()
}