diff options
author | nea <nea@nea.moe> | 2023-08-03 20:12:53 +0200 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-08-03 21:55:21 +0200 |
commit | 5198a5eca8257ee05e4846dc7ef46c983f7752d0 (patch) | |
tree | de470324a8737eccf4222ece4b795c40ca5fb5f6 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 5dee3f298497dae472e80235091b659e4042fd49 (diff) | |
download | skyhanni-5198a5eca8257ee05e4846dc7ef46c983f7752d0.tar.gz skyhanni-5198a5eca8257ee05e4846dc7ef46c983f7752d0.tar.bz2 skyhanni-5198a5eca8257ee05e4846dc7ef46c983f7752d0.zip |
Add chat filter gui
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt | 3 |
1 files changed, 3 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 66f291f26..4c73c6113 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -4,9 +4,11 @@ import at.hannibal2.skyhanni.SkyHanniMod import at.hannibal2.skyhanni.config.ConfigGuiManager import at.hannibal2.skyhanni.config.commands.SimpleCommand.ProcessCommandRunnable import at.hannibal2.skyhanni.data.ApiDataLoader +import at.hannibal2.skyhanni.data.ChatManager import at.hannibal2.skyhanni.data.GuiEditManager import at.hannibal2.skyhanni.features.bingo.BingoCardDisplay import at.hannibal2.skyhanni.features.bingo.BingoNextStepHelper +import at.hannibal2.skyhanni.features.chat.ChatFilterGui import at.hannibal2.skyhanni.features.event.diana.BurrowWarpHelper import at.hannibal2.skyhanni.features.event.diana.InquisitorWaypointShare import at.hannibal2.skyhanni.features.garden.GardenAPI @@ -186,6 +188,7 @@ object Commands { private fun developersCodingHelp() { registerCommand("shtest", "Unused test command.") { SkyHanniTestCommand.testCommand(it) } registerCommand("shreloadlocalrepo", "Reloading the local repo data") { SkyHanniMod.repo.reloadLocalRepo() } + registerCommand("shchathistory", "Show the unfiltered chat history") { ChatManager.openChatFilterGUI() } registerCommand( "shstoplisteners", "Unregistering all loaded forge event listeners" |