aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/commands
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 18:53:16 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2024-01-18 18:53:16 +0100
commit829aea323a35e88384e2e258049b5c74c7fafb7e (patch)
tree55475921184b5c8b30c854d9ac4bf942c886dc34 /src/main/java/at/hannibal2/skyhanni/config/commands
parent4c83ab3595adf8af8588c2bca3b4f7e472b62af0 (diff)
downloadskyhanni-829aea323a35e88384e2e258049b5c74c7fafb7e.tar.gz
skyhanni-829aea323a35e88384e2e258049b5c74c7fafb7e.tar.bz2
skyhanni-829aea323a35e88384e2e258049b5c74c7fafb7e.zip
/shdebugwaypoint -> /shtestwaypoint & /shdebugtablist -> /shtesttablist & /shdebugdata -> /shdebug
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt8
1 files changed, 4 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 dd08c4f93..2f70c7e55 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -262,8 +262,8 @@ object Commands {
"Search or reset config elements §c(warning, dangerous!)"
) { SkyHanniConfigSearchResetCommand.command(it) }
registerCommand(
- "shdebugdata",
- "Prints debug data in the clipboard"
+ "shdebug",
+ "Copies SkyHanni debug data in the clipboard."
) { SkyHanniDebugsAndTests.debugData(it) }
registerCommand(
"shversion",
@@ -322,8 +322,8 @@ object Commands {
"shfindnullconfig",
"Find config elements that are null and prints them into the console"
) { SkyHanniDebugsAndTests.findNullConfig(it) }
- registerCommand("shdebugwaypoint", "Mark a waypoint on that location") { SkyHanniDebugsAndTests.waypoint(it) }
- registerCommand("shdebugtablist", "Set your clipboard as a fake tab list.") { TabListData.toggleDebugCommand() }
+ registerCommand("shtestwaypoint", "Set a waypoint on that location") { SkyHanniDebugsAndTests.waypoint(it) }
+ registerCommand("shtesttablist", "Set your clipboard as a fake tab list.") { TabListData.toggleDebugCommand() }
registerCommand("shreloadlocalrepo", "Reloading the local repo data") { SkyHanniMod.repo.reloadLocalRepo() }
registerCommand("shchathistory", "Show the unfiltered chat history") { ChatManager.openChatFilterGUI() }
registerCommand(