diff options
author | hannibal2 <24389977+hannibal002@users.noreply.github.com> | 2024-08-02 11:08:09 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-02 11:08:09 +0200 |
commit | 32e7a457983a0a6050d7db8bd99dec52a5164979 (patch) | |
tree | 78a62627d5d7f8993bbcddfdb1c5b7df5bdcde51 /src | |
parent | 38505f7d513368327028e3d80213432beebd174f (diff) | |
download | skyhanni-32e7a457983a0a6050d7db8bd99dec52a5164979.tar.gz skyhanni-32e7a457983a0a6050d7db8bd99dec52a5164979.tar.bz2 skyhanni-32e7a457983a0a6050d7db8bd99dec52a5164979.zip |
Fix: Dungeon Finder item lore wrong item (#2298)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt index d3a369201..c7a8675fc 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt @@ -297,7 +297,7 @@ object DungeonFinderFeatures { fun onTooltip(event: LorenzToolTipEvent) { if (!isEnabled()) return if (!inInventory) return - val toolTip = toolTipMap[event.slot.slotIndex] + val toolTip = toolTipMap[event.slot.slotNumber] if (toolTip.isNullOrEmpty()) return // TODO @Thunderblade73 fix that to "event.toolTip = toolTip" val oldToolTip = event.toolTip |