diff options
author | 2020-11-28 15:47:50 +0200 | |
---|---|---|
committer | 2020-11-28 15:47:50 +0200 | |
commit | 7b3d8ed6e655b787c2538541ca35301f2fadb508 (patch) | |
tree | 032d8c817773896c0c4dc48ea75ecc7fd2c99397 | |
parent | Add default mute duration (diff) |
Added infraction edit aliases
-rw-r--r-- | bot/exts/moderation/infraction/management.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/moderation/infraction/management.py b/bot/exts/moderation/infraction/management.py index 394f63da3..4cd7d15bf 100644 --- a/bot/exts/moderation/infraction/management.py +++ b/bot/exts/moderation/infraction/management.py @@ -40,12 +40,12 @@ class ModManagement(commands.Cog): # region: Edit infraction commands - @commands.group(name='infraction', aliases=('infr', 'infractions', 'inf'), invoke_without_command=True) + @commands.group(name='infraction', aliases=('infr', 'infractions', 'inf', 'i'), invoke_without_command=True) async def infraction_group(self, ctx: Context) -> None: """Infraction manipulation commands.""" await ctx.send_help(ctx.command) - @infraction_group.command(name='edit') + @infraction_group.command(name='edit', aliases=('e',)) async def infraction_edit( self, ctx: Context, |