Skip to content

Commit

Permalink
bring back the two removed commands
Browse files Browse the repository at this point in the history
  • Loading branch information
CalMWolfs committed Oct 13, 2024
1 parent 8c9ae71 commit e4921ca
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import at.hannibal2.skyhanni.features.commands.PartyChatCommands
import at.hannibal2.skyhanni.features.commands.PartyCommands
import at.hannibal2.skyhanni.features.commands.WikiManager
import at.hannibal2.skyhanni.features.dungeon.CroesusChestTracker
import at.hannibal2.skyhanni.features.dungeon.floor7.TerminalInfo
import at.hannibal2.skyhanni.features.event.diana.AllBurrowsList
import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper
import at.hannibal2.skyhanni.features.event.diana.DianaProfitTracker
Expand Down Expand Up @@ -76,6 +77,7 @@ import at.hannibal2.skyhanni.features.misc.reminders.ReminderManager
import at.hannibal2.skyhanni.features.misc.update.UpdateManager
import at.hannibal2.skyhanni.features.misc.visualwords.VisualWordGui
import at.hannibal2.skyhanni.features.rift.area.westvillage.VerminTracker
import at.hannibal2.skyhanni.features.rift.everywhere.PunchcardHighlight
import at.hannibal2.skyhanni.features.slayer.SlayerProfitTracker
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.test.DebugCommand
Expand Down Expand Up @@ -405,7 +407,7 @@ object Commands {
category = CommandCategory.USERS_RESET
callback { GardenAPI.resetCropSpeed() }
}
event.register("shresetismet") {
event.register("shresetkismet") {
description = "Resets the saved values of the applied kismet feathers in Croesus"
category = CommandCategory.USERS_RESET
callback { CroesusChestTracker.resetChest() }
Expand All @@ -430,6 +432,16 @@ object Commands {
category = CommandCategory.USERS_RESET
callback { MineshaftPityDisplay.fullResetCounter() }
}
event.register("shresetpunchcard") {
description = "Resets the Rift Punchcard Artifact player list."
category = CommandCategory.USERS_RESET
callback { PunchcardHighlight.clearList() }
}
event.register("shresetterminal") {
description = "Resets terminal highlights in F7."
category = CommandCategory.USERS_RESET
callback { TerminalInfo.resetTerminals() }
}
}

private fun usersBugFix(event: RegisterCommandsEvent) {
Expand Down

0 comments on commit e4921ca

Please sign in to comment.