diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-08 11:56:05 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-09-08 11:56:05 +0200 |
commit | c99dfe1b340b8dcb27c3df0b899d0ebd163b65fd (patch) | |
tree | db8946d0451c68e1f22c5b7a57c3ce3bb0162f3a /src/main/java/at/hannibal2/skyhanni/features/garden | |
parent | 1447426be65a3ce29cef36395cd47603c9539e00 (diff) | |
download | skyhanni-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/features/garden')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt index b62f86d85..29333d205 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/garden/contest/JacobFarmingContestsInventory.kt @@ -7,7 +7,7 @@ import at.hannibal2.skyhanni.utils.ItemUtils.getLore import at.hannibal2.skyhanni.utils.ItemUtils.name import at.hannibal2.skyhanni.utils.LorenzColor import at.hannibal2.skyhanni.utils.LorenzUtils -import at.hannibal2.skyhanni.utils.RenderUtils +import at.hannibal2.skyhanni.utils.RenderUtils.drawSlotText import at.hannibal2.skyhanni.utils.RenderUtils.highlight import net.minecraft.client.gui.inventory.GuiChest import net.minecraft.inventory.ContainerChest @@ -169,7 +169,7 @@ class JacobFarmingContestsInventory { scale = 1.3f } - RenderUtils.drawSlotText(x, y, stackTip, scale) + event.drawSlotText(x, y, stackTip, scale) } } } |