diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-26 12:29:45 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-04-26 12:29:45 +0200 |
commit | 5bfb3991eb644f12bed3cad69c8d775cccda92bf (patch) | |
tree | f6e4de45e84d34071f6d07bb3214f57e609b875f /src/main/java/at/hannibal2/skyhanni/features/nether | |
parent | 3c766a1e71d3b9310c4742ce7338b79af1eb8337 (diff) | |
download | skyhanni-5bfb3991eb644f12bed3cad69c8d775cccda92bf.tar.gz skyhanni-5bfb3991eb644f12bed3cad69c8d775cccda92bf.tar.bz2 skyhanni-5bfb3991eb644f12bed3cad69c8d775cccda92bf.zip |
Show a notification when a Wild Strawberry Dye drops during farming.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features/nether')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt index a6d06366a..1c47b65c5 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/dailyquest/DailyQuestHelper.kt @@ -62,6 +62,7 @@ class DailyQuestHelper(val reputationHelper: CrimsonIsleReputationHelper) { } } + // TODO use OwnInventorItemUpdateEvent private fun checkInventoryForTrophyFish() { val fishQuest = getQuest<TrophyFishQuest>() ?: return if (fishQuest.state != QuestState.ACCEPTED && fishQuest.state != QuestState.READY_TO_COLLECT) return |