aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/data
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-08 11:56:05 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-08 11:56:05 +0200
commitc99dfe1b340b8dcb27c3df0b899d0ebd163b65fd (patch)
treedb8946d0451c68e1f22c5b7a57c3ce3bb0162f3a /src/main/java/at/hannibal2/skyhanni/data
parent1447426be65a3ce29cef36395cd47603c9539e00 (diff)
downloadskyhanni-c99dfe1b340b8dcb27c3df0b899d0ebd163b65fd.tar.gz
skyhanni-c99dfe1b340b8dcb27c3df0b899d0ebd163b65fd.tar.bz2
skyhanni-c99dfe1b340b8dcb27c3df0b899d0ebd163b65fd.zip
Only allow calling drawSlotText inside the event
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/data')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/ItemTipHelper.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/ItemTipHelper.kt b/src/main/java/at/hannibal2/skyhanni/data/ItemTipHelper.kt
index a8ecdfc52..30f2b51b7 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/ItemTipHelper.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/ItemTipHelper.kt
@@ -7,7 +7,7 @@ import at.hannibal2.skyhanni.events.RenderItemTipEvent
import at.hannibal2.skyhanni.mixins.transformers.gui.AccessorGuiContainer
import at.hannibal2.skyhanni.utils.InventoryUtils.getInventoryName
import at.hannibal2.skyhanni.utils.LorenzUtils
-import at.hannibal2.skyhanni.utils.RenderUtils
+import at.hannibal2.skyhanni.utils.RenderUtils.drawSlotText
import net.minecraft.client.Minecraft
import net.minecraft.client.gui.inventory.GuiChest
import net.minecraft.client.renderer.GlStateManager
@@ -32,7 +32,7 @@ class ItemTipHelper {
val x = event.x + 17 + renderObject.offsetX
val y = event.y + 9 + renderObject.offsetY
- RenderUtils.drawSlotText(x, y, text, 1f)
+ event.drawSlotText(x, y, text, 1f)
}
}