diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-12-29 23:08:53 +0100 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2022-12-29 23:08:53 +0100 |
| commit | e50d8d3b7d3f2682744b5b9ee98d248ea5f0ce5b (patch) | |
| tree | f9c0cca9a01e8e50615173721f6e73a46e6cd3f3 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | f175e24a431d67bae406ffcd45e88c82f93ec8fd (diff) | |
| download | SkyHanni-e50d8d3b7d3f2682744b5b9ee98d248ea5f0ce5b.tar.gz SkyHanni-e50d8d3b7d3f2682744b5b9ee98d248ea5f0ce5b.tar.bz2 SkyHanni-e50d8d3b7d3f2682744b5b9ee98d248ea5f0ce5b.zip | |
Saves missing items from cancelled buy orders to clipboard for faster re-entry.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java index afb2793d5..0af68df64 100644 --- a/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java +++ b/src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java @@ -9,6 +9,7 @@ import at.hannibal2.skyhanni.features.*; import at.hannibal2.skyhanni.features.anvil.AnvilCombineHelper; import at.hannibal2.skyhanni.features.bazaar.BazaarApi; import at.hannibal2.skyhanni.features.bazaar.BazaarBestSellMethod; +import at.hannibal2.skyhanni.features.bazaar.BazaarCancelledBuyOrderClipboard; import at.hannibal2.skyhanni.features.bazaar.BazaarOrderHelper; import at.hannibal2.skyhanni.features.chat.ChatFilter; import at.hannibal2.skyhanni.features.chat.PlayerDeathMessages; @@ -164,6 +165,7 @@ public class SkyHanniMod { registerEvent(new BurrowWarpHelper()); registerEvent(new HighlightBonzoMasks()); registerEvent(new DungeonLevelColor()); + registerEvent(new BazaarCancelledBuyOrderClipboard()); Commands.INSTANCE.init(); |
