diff options
author | 2023-06-12 12:18:24 +0100 | |
---|---|---|
committer | 2023-06-12 12:18:24 +0100 | |
commit | 792163e8acc5b6e3d7297da7a50c79ab12f9bfdc (patch) | |
tree | c19a3ccefaa63da5dc7af14a7c5c511687e960d4 | |
parent | Bump ruff from 0.0.267 to 0.0.272 (#2628) (diff) |
Add 'n' alias and 'nom' root alias to 'nominate' command (#2632)
-rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py index 74d28dc77..05c0b7c71 100644 --- a/bot/exts/recruitment/talentpool/_cog.py +++ b/bot/exts/recruitment/talentpool/_cog.py @@ -313,7 +313,11 @@ class TalentPool(Cog, name="Talentpool"): """ await self._nominate_user(ctx, user, reason) - @nomination_group.command(name="nominate", aliases=("w", "add", "a", "watch"), root_aliases=("nominate",)) + @nomination_group.command( + name="nominate", + aliases=("nom", "n", "watch", "w", "add", "a"), + root_aliases=("nominate", "nom") + ) @has_any_role(*STAFF_ROLES) async def nominate_command(self, ctx: Context, user: MemberOrUser, *, reason: str = "") -> None: """ |