diff options
author | 2021-09-01 10:23:05 +0100 | |
---|---|---|
committer | 2021-09-01 10:23:05 +0100 | |
commit | 990bc67c7d02027d1eb3fc30654585bf77bc0d17 (patch) | |
tree | c8c0c4eeb4a192f58235088c150c524c3f653865 | |
parent | Fix spelling of a TalentPool command name (diff) |
Add an extra alias to unnominate
-rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py index c0b3f8348..477fff2fd 100644 --- a/bot/exts/recruitment/talentpool/_cog.py +++ b/bot/exts/recruitment/talentpool/_cog.py @@ -328,7 +328,7 @@ class TalentPool(Cog, name="Talentpool"): max_size=1000 ) - @nomination_group.command(name='end', aliases=('unwatch',), root_aliases=("unnominate",)) + @nomination_group.command(name="end", aliases=("unwatch", "unnominate"), root_aliases=("unnominate",)) @has_any_role(*MODERATION_ROLES) async def end_nomination_command(self, ctx: Context, user: MemberOrUser, *, reason: str) -> None: """ |