From 84b36cb1c0b89f42cc0613cfdbba275a78528fb2 Mon Sep 17 00:00:00 2001 From: appable Date: Wed, 29 May 2024 00:17:28 -0700 Subject: Improvement: Persistent HoppityCollectionStats display (#1836) --- src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands') diff --git a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt index 881861ad3..884a2c140 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -28,6 +28,7 @@ import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker import at.hannibal2.skyhanni.features.event.diana.GriffinBurrowHelper import at.hannibal2.skyhanni.features.event.diana.InquisitorWaypointShare import at.hannibal2.skyhanni.features.event.diana.MythologicalCreatureTracker +import at.hannibal2.skyhanni.features.event.hoppity.HoppityCollectionStats import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureTracker import at.hannibal2.skyhanni.features.fishing.tracker.FishingProfitTracker import at.hannibal2.skyhanni.features.fishing.tracker.SeaCreatureTracker @@ -402,6 +403,10 @@ object Commands { "shUpdateBazaarPrices", "Forcefully updating the bazaar prices right now." ) { HypixelBazaarFetcher.fetchNow() } + registerCommand( + "shclearsavedrabbits", + "Clears the saved rabbits on this profile." + ) { HoppityCollectionStats.clearSavedRabbits() } } private fun developersDebugFeatures() { -- cgit