diff options
author | Linnea Gräf <nea@nea.moe> | 2023-12-08 14:22:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-08 14:22:52 +0100 |
commit | 57acdfea63a58203cebda34ef7e16ed6fcc1bf1d (patch) | |
tree | acd9786f82a304a5ecddb36ae6f7f1cdc752a297 /src/main/java/at/hannibal2/skyhanni/config/commands | |
parent | 247656e0d4cd1733028009cecfab98c26953b795 (diff) | |
download | skyhanni-57acdfea63a58203cebda34ef7e16ed6fcc1bf1d.tar.gz skyhanni-57acdfea63a58203cebda34ef7e16ed6fcc1bf1d.tar.bz2 skyhanni-57acdfea63a58203cebda34ef7e16ed6fcc1bf1d.zip |
Add RepoPatterns (#715)
Added RepoPatterns. #715
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/commands')
-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 1a0b41629..bd8cea0e7 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt +++ b/src/main/java/at/hannibal2/skyhanni/config/commands/Commands.kt @@ -55,6 +55,7 @@ import at.hannibal2.skyhanni.utils.APIUtil import at.hannibal2.skyhanni.utils.LorenzUtils import at.hannibal2.skyhanni.utils.SoundUtils import at.hannibal2.skyhanni.utils.TabListData +import at.hannibal2.skyhanni.utils.repopatterns.RepoPatternGui import net.minecraft.client.Minecraft import net.minecraft.command.ICommandSender import net.minecraft.event.ClickEvent @@ -265,6 +266,7 @@ object Commands { } private fun developersCodingHelp() { + registerCommand("shrepopatterns", "See where regexes are loaded from") { RepoPatternGui.open() } registerCommand("shtest", "Unused test command.") { SkyHanniDebugsAndTests.testCommand(it) } registerCommand("shdebugwaypoint", "Mark a waypoint on that location") { SkyHanniDebugsAndTests.waypoint(it) } registerCommand("shdebugtablist", "Set your clipboard as a fake tab list.") { TabListData.toggleDebugCommand() } |