From 739a48d4679ce05c1f555a04fcdaa4e509d59d5d Mon Sep 17 00:00:00 2001 From: Thunderblade73 <85900443+Thunderblade73@users.noreply.github.com> Date: Sun, 23 Jun 2024 20:18:45 +0200 Subject: Backend: Drag and Drop for Renderables (#1864) Co-authored-by: Cal Co-authored-by: hannibal2 <24389977+hannibal00212@users.noreply.github.com> --- .../at/hannibal2/skyhanni/features/inventory/wardrobe/CustomWardrobe.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/features') diff --git a/src/main/java/at/hannibal2/skyhanni/features/inventory/wardrobe/CustomWardrobe.kt b/src/main/java/at/hannibal2/skyhanni/features/inventory/wardrobe/CustomWardrobe.kt index 1c3f36aeb..08abfa34d 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/inventory/wardrobe/CustomWardrobe.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/inventory/wardrobe/CustomWardrobe.kt @@ -58,7 +58,7 @@ object CustomWardrobe { private var guiName = "Custom Wardrobe" @SubscribeEvent - fun onGuiRender(event: GuiContainerEvent.BeforeDraw) { + fun onGuiRender(event: GuiContainerEvent.PreDraw) { if (!isEnabled() || editMode) return val renderable = displayRenderable ?: run { update() -- cgit