aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/features/inventory/JunkHighlighter.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/features/inventory/JunkHighlighter.kt')
-rw-r--r--src/main/kotlin/features/inventory/JunkHighlighter.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/features/inventory/JunkHighlighter.kt b/src/main/kotlin/features/inventory/JunkHighlighter.kt
index 45d265e..15bdcfa 100644
--- a/src/main/kotlin/features/inventory/JunkHighlighter.kt
+++ b/src/main/kotlin/features/inventory/JunkHighlighter.kt
@@ -23,7 +23,7 @@ object JunkHighlighter {
if (!TConfig.highlightBind.isPressed() || TConfig.junkRegex.isEmpty()) return
val junkRegex = TConfig.junkRegex.toPattern()
val slot = event.slot
- junkRegex.useMatch(slot.stack.getSearchName()) {
+ junkRegex.useMatch(slot.item.getSearchName()) {
event.context.fill(slot.x, slot.y, slot.x + 16, slot.y + 16, 0xffff0000.toInt())
}
}