From f767756fa0c01e8551639064a872e56c2678ff59 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Tue, 18 Apr 2023 21:01:44 +0200 Subject: Do not open skyhanni gui hotkey or bazaar commands while inside the storage inventories --- src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/data') diff --git a/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt b/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt index cf4b0498e..92f6c02c3 100644 --- a/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/data/GuiEditManager.kt @@ -4,6 +4,7 @@ import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.config.core.config.Position import at.hannibal2.skyhanni.config.core.config.gui.GuiPositionEditor import at.hannibal2.skyhanni.events.GuiRenderEvent +import at.hannibal2.skyhanni.utils.InventoryUtils import at.hannibal2.skyhanni.utils.LorenzUtils import io.github.moulberry.notenoughupdates.NEUOverlay import io.github.moulberry.notenoughupdates.overlays.AuctionSearchOverlay @@ -37,6 +38,7 @@ class GuiEditManager { if (NEUOverlay.searchBarHasFocus) return if (AuctionSearchOverlay.shouldReplace()) return if (BazaarSearchOverlay.shouldReplace()) return + if (InventoryUtils.inStorage()) return if (isInGui()) return openGuiEditor() -- cgit