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 | dd3fdd9a70f7479c7a1481c890d2da14d8646ebb (patch) | |
| tree | cd0f0a53df4e67601ec99a7865c7a712da9f9e03 | |
| parent | 0e6b39674ad1bfa2dc3df63e37de86e8b1ca514c (diff) | |
| download | SkyHanni-dd3fdd9a70f7479c7a1481c890d2da14d8646ebb.tar.gz SkyHanni-dd3fdd9a70f7479c7a1481c890d2da14d8646ebb.tar.bz2 SkyHanni-dd3fdd9a70f7479c7a1481c890d2da14d8646ebb.zip | |
Code cleanup.
| -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 = "" } |
