From 042a5fcbd90a99e8f15ee3d891e87d6c867d1b06 Mon Sep 17 00:00:00 2001 From: Leon Sandøy Date: Sat, 14 Sep 2019 13:46:27 +0200 Subject: Adds a !nominees alias. This invokes the `!nomination list` command, showing all currently nominated users. --- bot/cogs/alias.py | 8 ++++++++ 1 file changed, 8 insertions(+) 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 tp watched. + """ + + await self.invoke(ctx, "talentpool watched") + def setup(bot): bot.add_cog(Alias(bot)) -- cgit v1.2.3