diff options
author | 2020-12-20 16:56:27 +0100 | |
---|---|---|
committer | 2020-12-20 16:56:27 +0100 | |
commit | 6115f5a9f9c4c72e3ec7cac02372f10135b836bc (patch) | |
tree | 33c9202d62a2804f9ff85b82f4902b25a12872d6 | |
parent | Merge pull request #1333 from python-discord/bug/backend/bot-j8/api-session-c... (diff) |
Add the clear alias to the clean command
-rw-r--r-- | bot/exts/utils/clean.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/utils/clean.py b/bot/exts/utils/clean.py index bf25cb4c2..8acaf9131 100644 --- a/bot/exts/utils/clean.py +++ b/bot/exts/utils/clean.py @@ -191,7 +191,7 @@ class Clean(Cog): channel_id=Channels.mod_log, ) - @group(invoke_without_command=True, name="clean", aliases=["purge"]) + @group(invoke_without_command=True, name="clean", aliases=["clear", "purge"]) @has_any_role(*MODERATION_ROLES) async def clean_group(self, ctx: Context) -> None: """Commands for cleaning messages in channels.""" |