diff options
author | 2021-04-30 10:09:37 +0100 | |
---|---|---|
committer | 2021-04-30 10:09:37 +0100 | |
commit | 2bbbef35ebbb01e7671250f58c4a8e7543942b08 (patch) | |
tree | 83aeaebaf3a610460d00b136af9b1dc654102917 | |
parent | Consistant use of double quotes and tuples in avatar_mod cog (diff) |
Add non-underscore aliases for lazy people like me :)
-rw-r--r-- | bot/exts/evergreen/avatar_modification/avatar_modify.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/evergreen/avatar_modification/avatar_modify.py b/bot/exts/evergreen/avatar_modification/avatar_modify.py index 095de306..a111c480 100644 --- a/bot/exts/evergreen/avatar_modification/avatar_modify.py +++ b/bot/exts/evergreen/avatar_modification/avatar_modify.py @@ -79,7 +79,7 @@ class AvatarModify(commands.Cog): return member - @commands.group(aliases=("avatar_mod", "pfp_mod")) + @commands.group(aliases=("avatar_mod", "pfp_mod", "avatarmod", "pfpmod")) async def avatar_modify(self, ctx: commands.Context) -> None: """Groups all of the pfp modifying commands to allow a single concurrency limit.""" if not ctx.invoked_subcommand: |