diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-23 14:38:06 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-23 14:38:06 +0100 |
commit | f1fc5b97c776884a5a10a6bcc4d033fa3d726e23 (patch) | |
tree | 73b460dfea787f5ba460121eb5b5723f9d24a3fa /src/main/java/at/hannibal2/skyhanni/config | |
parent | 9b8b9c442e51c471f85361f79341ce998f8da2eb (diff) | |
download | skyhanni-f1fc5b97c776884a5a10a6bcc4d033fa3d726e23.tar.gz skyhanni-f1fc5b97c776884a5a10a6bcc4d033fa3d726e23.tar.bz2 skyhanni-f1fc5b97c776884a5a10a6bcc4d033fa3d726e23.zip |
Added /shsetapikey
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 2 |
1 files changed, 2 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 f7c89dc4d..a279f1fc1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -4,6 +4,7 @@ import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.config.ConfigEditor import at.hannibal2.skyhanni.config.commands.SimpleCommand.ProcessCommandRunnable import at.hannibal2.skyhanni.config.core.GuiScreenElementWrapper +import at.hannibal2.skyhanni.data.ApiDataLoader import at.hannibal2.skyhanni.features.bingo.BingoCardDisplay import at.hannibal2.skyhanni.features.bingo.BingoNextStepHelper import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper @@ -46,6 +47,7 @@ object Commands { registerCommand("shtrackcollection") { CollectionCounter.command(it) } registerCommand("shreloadbingodata") { BingoCardDisplay.command() } registerCommand("shprintbingohelper") { BingoNextStepHelper.command() } + registerCommand("shsetapikey") { ApiDataLoader.command(it) } } private fun registerCommand(name: String, function: (Array<String>) -> Unit) { |