summaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal002@users.noreply.github.com>2024-05-02 09:25:07 +0200
committerGitHub <noreply@github.com>2024-05-02 09:25:07 +0200
commitb748f088328deaaf91f35ade7bd2fcb094c20d0d (patch)
treefec83463bcfb8a2fd92167126e4af45a992b30f8 /src/main/java/at/hannibal2/skyhanni/features
parentb0f1bc0b14c022876ec2a802bc10025e34cfe761 (diff)
downloadskyhanni-b748f088328deaaf91f35ade7bd2fcb094c20d0d.tar.gz
skyhanni-b748f088328deaaf91f35ade7bd2fcb094c20d0d.tar.bz2
skyhanni-b748f088328deaaf91f35ade7bd2fcb094c20d0d.zip
Fix: Estimated Item Value not visible in PV (#1620)
Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Co-authored-by: Cal <cwolfson58@gmail.com>
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt
index c79c1f8a4..299fe6ec5 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt
@@ -7,10 +7,10 @@ import at.hannibal2.skyhanni.data.jsonobjects.repo.neu.NeuReforgeStoneJson
import at.hannibal2.skyhanni.events.ConfigLoadEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.InventoryCloseEvent
-import at.hannibal2.skyhanni.events.LorenzToolTipEvent
import at.hannibal2.skyhanni.events.NeuRepositoryReloadEvent
import at.hannibal2.skyhanni.events.RenderItemTooltipEvent
import at.hannibal2.skyhanni.events.RepositoryReloadEvent
+import at.hannibal2.skyhanni.events.item.ItemHoverEvent
import at.hannibal2.skyhanni.test.command.ErrorManager
import at.hannibal2.skyhanni.utils.ChatUtils
import at.hannibal2.skyhanni.utils.CollectionUtils.addAsSingletonList
@@ -63,7 +63,7 @@ object EstimatedItemValue {
}
@SubscribeEvent
- fun onTooltip(event: LorenzToolTipEvent) {
+ fun onTooltip(event: ItemHoverEvent) {
if (!LorenzUtils.inSkyBlock) return
if (!config.enabled) return