From c4da7e8b602e3726dbd0823c1626d4dccc19f503 Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 28 Jul 2024 10:34:17 +0200 Subject: Fix: HotM total powder being reset (#2263) --- src/main/java/at/hannibal2/skyhanni/data/HotmData.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt b/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt index c484f2ca9..1775cdeeb 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/HotmData.kt @@ -674,6 +674,7 @@ enum class HotmData( fun onInventoryFullyOpen(event: InventoryFullyOpenedEvent) { if (!LorenzUtils.inSkyBlock) return inInventory = inventoryPattern.matches(event.inventoryName) + if (!inInventory) return DelayedRun.runNextTick { InventoryUtils.getItemsInOpenChest().forEach { it.parse() } abilities.filter { it.isUnlocked }.forEach { -- cgit