diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-25 01:02:13 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-12-25 01:02:13 +0100 |
commit | d8dad8b5f6cc28b23d503a3fd70c5d36d107eea0 (patch) | |
tree | 809f22ca200d79c81a2edfe5e043ff84835840fd /src/main/java/at/hannibal2/skyhanni/config | |
parent | 8cdd576927e6731cb07efc9054dee1ddf72d86b5 (diff) | |
download | skyhanni-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.kt | 4 |
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() } |