diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-16 16:32:07 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-16 16:32:07 +0100 |
commit | 5d027819967ad664dd6b79f2e3c90c752df55e84 (patch) | |
tree | 1542a67f137999c57ca1daa08b0c237b96e0c9d7 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 6a9599fa9820b3efe0e5fdbb1d546ad8a0aa4de7 (diff) | |
download | skyhanni-5d027819967ad664dd6b79f2e3c90c752df55e84.tar.gz skyhanni-5d027819967ad664dd6b79f2e3c90c752df55e84.tar.bz2 skyhanni-5d027819967ad664dd6b79f2e3c90c752df55e84.zip |
Added Mythological Mob Tracker.
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 10 |
1 files changed, 10 insertions, 0 deletions
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() { |