diff options
| author | 2019-09-14 13:46:27 +0200 | |
|---|---|---|
| committer | 2019-09-14 13:46:27 +0200 | |
| commit | 042a5fcbd90a99e8f15ee3d891e87d6c867d1b06 (patch) | |
| tree | ea7cecc4ee89286a16fece8897d22f6ef2195c9d | |
| parent | Improvements to the Wolfram cog. (diff) | |
Adds a !nominees alias.
This invokes the `!nomination list` command,
showing all currently nominated users.
| -rw-r--r-- | bot/cogs/alias.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index 85d101448..dbdd2ee6a 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -197,6 +197,14 @@ class Alias: await self.invoke(ctx, "nomination end", user, reason=reason) + @command(name="nominees", hidden=True) + async def nominees_alias(self, ctx): + """ + Alias for invoking <prefix>tp watched. + """ + + await self.invoke(ctx, "talentpool watched") + def setup(bot): bot.add_cog(Alias(bot)) |