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 | a903a1dc50864f70887613d83bc4a654aa483d07 (patch) | |
| tree | f9c0cca9a01e8e50615173721f6e73a46e6cd3f3 /src/main/java/at/hannibal2/skyhanni/SkyHanniMod.java | |
| parent | acefffa518506d4d6f185a96ae466dc2feffc37d (diff) | |
| download | SkyHanni-a903a1dc50864f70887613d83bc4a654aa483d07.tar.gz SkyHanni-a903a1dc50864f70887613d83bc4a654aa483d07.tar.bz2 SkyHanni-a903a1dc50864f70887613d83bc4a654aa483d07.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(); |
