aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-25 01:02:13 +0100
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-12-25 01:02:13 +0100
commitd8dad8b5f6cc28b23d503a3fd70c5d36d107eea0 (patch)
tree809f22ca200d79c81a2edfe5e043ff84835840fd /src/main/java/at/hannibal2/skyhanni/config
parent8cdd576927e6731cb07efc9054dee1ddf72d86b5 (diff)
downloadskyhanni-d8dad8b5f6cc28b23d503a3fd70c5d36d107eea0.tar.gz
skyhanni-d8dad8b5f6cc28b23d503a3fd70c5d36d107eea0.tar.bz2
skyhanni-d8dad8b5f6cc28b23d503a3fd70c5d36d107eea0.zip
Added debug command /shfindnullconfig
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt4
1 files changed, 4 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 da54eb54e..a202aa1dd 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
+++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt
@@ -303,6 +303,10 @@ object Commands {
private fun developersCodingHelp() {
registerCommand("shrepopatterns", "See where regexes are loaded from") { RepoPatternGui.open() }
registerCommand("shtest", "Unused test command.") { SkyHanniDebugsAndTests.testCommand(it) }
+ registerCommand(
+ "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("shreloadlocalrepo", "Reloading the local repo data") { SkyHanniMod.repo.reloadLocalRepo() }