diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-26 19:23:57 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-26 19:23:57 +0100 |
commit | 38abef2c4409cf32b2087918ac587e8bf370c091 (patch) | |
tree | b77cb9845c9dbe53ea5cd44c12ac210825d8e456 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | f676436eda47f06a856aeeb40030d2e736f9724f (diff) | |
download | skyhanni-38abef2c4409cf32b2087918ac587e8bf370c091.tar.gz skyhanni-38abef2c4409cf32b2087918ac587e8bf370c091.tar.bz2 skyhanni-38abef2c4409cf32b2087918ac587e8bf370c091.zip |
Added Sea Creature 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 | 13 |
1 files changed, 9 insertions, 4 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 a202aa1dd..11f6de89a 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -17,11 +17,12 @@ 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.diana.MythologicalCreatureTracker import at.hannibal2.skyhanni.features.event.jerry.frozentreasure.FrozenTreasureTracker import at.hannibal2.skyhanni.features.fame.AccountUpgradeReminder import at.hannibal2.skyhanni.features.fame.CityProjectFeatures import at.hannibal2.skyhanni.features.fishing.tracker.FishingProfitTracker +import at.hannibal2.skyhanni.features.fishing.tracker.SeaCreatureTracker import at.hannibal2.skyhanni.features.garden.GardenAPI import at.hannibal2.skyhanni.features.garden.GardenCropTimeCommand import at.hannibal2.skyhanni.features.garden.GardenNextJacobContest @@ -215,9 +216,13 @@ object Commands { "Resets the Diana Profit Tracker" ) { DianaProfitTracker.resetCommand(it) } registerCommand( - "shresetmythologicalmobtracker", - "Resets the Mythological Mob Tracker" - ) { MythologicalMobTracker.resetCommand(it) } + "shresetmythologicalcreatureracker", + "Resets the Mythological Creature Tracker" + ) { MythologicalCreatureTracker.resetCommand(it) } + registerCommand( + "shresetseacreaturetracker", + "Resets the Sea Creature Tracker" + ) { SeaCreatureTracker.resetCommand(it) } } private fun usersBugFix() { |