diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-16 20:33:20 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-02-16 20:33:20 +0100 |
commit | 2eb0b472663f3e67cee98f3ef9de91a792b6f4cc (patch) | |
tree | cd0f0a53df4e67601ec99a7865c7a712da9f9e03 /src | |
parent | 07351036391533533cd059ef6910c6bc1efeb36f (diff) | |
download | skyhanni-2eb0b472663f3e67cee98f3ef9de91a792b6f4cc.tar.gz skyhanni-2eb0b472663f3e67cee98f3ef9de91a792b6f4cc.tar.bz2 skyhanni-2eb0b472663f3e67cee98f3ef9de91a792b6f4cc.zip |
Code cleanup.
Diffstat (limited to 'src')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarBestSellMethod.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarBestSellMethod.kt b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarBestSellMethod.kt index a496bd2b5..92baf6ee6 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarBestSellMethod.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/bazaar/BazaarBestSellMethod.kt @@ -1,7 +1,7 @@ package at.hannibal2.skyhanni.features.bazaar import at.hannibal2.skyhanni.SkyHanniMod -import at.hannibal2.skyhanni.events.GuiContainerEvent +import at.hannibal2.skyhanni.events.InventoryCloseEvent import at.hannibal2.skyhanni.utils.ItemUtils.getLore import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.NumberUtil @@ -19,7 +19,7 @@ class BazaarBestSellMethod { } @SubscribeEvent - fun onBackgroundDrawn(event: GuiContainerEvent.CloseWindowEvent) { + fun onBackgroundDrawn(event: InventoryCloseEvent) { display = "" } |