diff options
| -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)) |