diff options
-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 |