diff options
| author | 2021-03-17 22:36:20 +0100 | |
|---|---|---|
| committer | 2021-03-17 22:36:20 +0100 | |
| commit | 9f65bfd0985331b5974011feca30b02f01548de5 (patch) | |
| tree | 7c0a71e5ea7af11bf5013a7fc48b6d9deab06284 | |
| parent | Branding: adjust daemon start-up behaviour (diff) | |
Branding: extend command aliases
| -rw-r--r-- | bot/exts/backend/branding/_cog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/backend/branding/_cog.py b/bot/exts/backend/branding/_cog.py index cbd61a751..57b762d1f 100644 --- a/bot/exts/backend/branding/_cog.py +++ b/bot/exts/backend/branding/_cog.py @@ -493,7 +493,7 @@ class Branding(commands.Cog): if not ctx.invoked_subcommand: await ctx.send_help(ctx.command) - @branding_group.command(name="about") + @branding_group.command(name="about", aliases=("current", "event")) async def branding_about_cmd(self, ctx: commands.Context) -> None: """Show the current event description.""" await self.send_info_embed(ctx.channel.id) @@ -526,7 +526,7 @@ class Branding(commands.Cog): # endregion # region: Command interface (branding calendar) - @branding_group.group(name="calendar", aliases=("schedule",)) + @branding_group.group(name="calendar", aliases=("schedule", "events")) async def branding_calendar_group(self, ctx: commands.Context) -> None: """ Show the current event calendar. |