From 5d027819967ad664dd6b79f2e3c90c752df55e84 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sat, 16 Dec 2023 16:32:07 +0100 Subject: Added Mythological Mob Tracker. --- .../java/at/hannibal2/skyhanni/config/commands/Commands.kt | 10 ++++++++++ 1 file changed, 10 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 8f4d96483..f169a04f8 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -15,7 +15,9 @@ import at.hannibal2.skyhanni.features.combat.endernodetracker.EnderNodeTracker import at.hannibal2.skyhanni.features.combat.ghostcounter.GhostUtil import at.hannibal2.skyhanni.features.commands.PartyCommands import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper +import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker import at.hannibal2.skyhanni.features.event.diana.InquisitorWaypointShare +import at.hannibal2.skyhanni.features.event.diana.MythologicalMobTracker import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureTracker import at.hannibal2.skyhanni.features.fame.AccountUpgradeReminder import at.hannibal2.skyhanni.features.fame.CityProjectFeatures @@ -208,6 +210,14 @@ object Commands { "shresetvermintracker", "Resets the Vermin Tracker" ) { VerminTracker.resetCommand(it) } + registerCommand( + "shresetdianaprofittracker", + "Resets the Diana Profit Tracker" + ) { DianaProfitTracker.resetCommand(it) } + registerCommand( + "shresetmythologicalmobtracker", + "Resets the Mythological Mob Tracker" + ) { MythologicalMobTracker.resetCommand(it) } } private fun usersBugFix() { -- cgit