diff options
author | 2022-11-15 10:25:35 +0000 | |
---|---|---|
committer | 2022-11-25 22:43:46 +0000 | |
commit | 9e95d459e5663ba3a3eacecf4c3073fce4817951 (patch) | |
tree | bc13c3502fdc59f61bd53ac3dbe1fbbf0058dd2f | |
parent | Add a filter for help chanel post names (diff) |
Add hf as an alias for the help-forum command group
-rw-r--r-- | bot/exts/help_channels/_cog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/help_channels/_cog.py b/bot/exts/help_channels/_cog.py index c119a44ef..50f8416fc 100644 --- a/bot/exts/help_channels/_cog.py +++ b/bot/exts/help_channels/_cog.py @@ -58,7 +58,7 @@ class HelpForum(commands.Cog): f"**Match:** {match.group()}" ) - @commands.group(name="help-forum") + @commands.group(name="help-forum", aliases=("hf",)) async def help_forum_group(self, ctx: commands.Context) -> None: """A group of commands that help manage our help forum system.""" if not ctx.invoked_subcommand: |