aboutsummaryrefslogtreecommitdiff
path: root/src/main
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-08-02 11:08:09 +0200
committerGitHub <noreply@github.com>2024-08-02 11:08:09 +0200
commit32e7a457983a0a6050d7db8bd99dec52a5164979 (patch)
tree78a62627d5d7f8993bbcddfdb1c5b7df5bdcde51 /src/main
parent38505f7d513368327028e3d80213432beebd174f (diff)
downloadskyhanni-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/main')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/dungeon/DungeonFinderFeatures.kt2
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