From c13744021e4ba9ddcba42a5635bde8a5d2617292 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal002@users.noreply.github.com> Date: Wed, 4 Sep 2024 11:14:12 +0200 Subject: Fix: Reputation helper sack update (#2439) Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../features/nether/reputationhelper/CrimsonIsleReputationHelper.kt | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src') diff --git a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/CrimsonIsleReputationHelper.kt b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/CrimsonIsleReputationHelper.kt index 6e1b73cd0..cbb9edd86 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/CrimsonIsleReputationHelper.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/nether/reputationhelper/CrimsonIsleReputationHelper.kt @@ -10,6 +10,7 @@ import at.hannibal2.skyhanni.events.ConfigLoadEvent import at.hannibal2.skyhanni.events.GuiRenderEvent import at.hannibal2.skyhanni.events.LorenzTickEvent import at.hannibal2.skyhanni.events.RepositoryReloadEvent +import at.hannibal2.skyhanni.events.SackChangeEvent import at.hannibal2.skyhanni.features.nether.reputationhelper.dailyquest.DailyQuestHelper import at.hannibal2.skyhanni.features.nether.reputationhelper.dailyquest.QuestLoader import at.hannibal2.skyhanni.features.nether.reputationhelper.kuudra.DailyKuudraBossHelper @@ -88,6 +89,11 @@ class CrimsonIsleReputationHelper(skyHanniMod: SkyHanniMod) { } } + @SubscribeEvent + fun onSackChange(event: SackChangeEvent) { + dirty = true + } + @SubscribeEvent fun onTick(event: LorenzTickEvent) { if (!IslandType.CRIMSON_ISLE.isInIsland()) return -- cgit