diff options
| author | 2019-02-17 13:00:41 +0100 | |
|---|---|---|
| committer | 2019-02-17 13:00:41 +0100 | |
| commit | e499e5b07641ff3dad211b98a67080e593d94c79 (patch) | |
| tree | 09367ed3b369efb2d290a6584e65cb2d3d60fc52 /bot/cogs/alias.py | |
| parent | Changing negative bot response in nominate command to be more explicit about ... (diff) | |
| parent | Merge pull request #311 from python-discord/add-team-creator (diff) | |
Merge branch 'master' into bb-improvements
Diffstat (limited to '')
| -rw-r--r-- | bot/cogs/alias.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/bot/cogs/alias.py b/bot/cogs/alias.py index 23562ad25..bf59b6d15 100644 --- a/bot/cogs/alias.py +++ b/bot/cogs/alias.py @@ -103,14 +103,6 @@ class Alias: await self.invoke(ctx, "site faq") - @command(name="rules", hidden=True) - async def site_rules_alias(self, ctx): - """ - Alias for invoking <prefix>site rules. - """ - - await self.invoke(ctx, "site rules") - @command(name="reload", hidden=True) async def cogs_reload_alias(self, ctx, *, cog_name: str): """ @@ -137,6 +129,14 @@ class Alias: await self.invoke(ctx, "defcon disable") + @command(name="exception", hidden=True) + async def tags_get_traceback_alias(self, ctx): + """ + Alias for invoking <prefix>tags get traceback. + """ + + await self.invoke(ctx, "tags get traceback") + @group(name="get", aliases=("show", "g"), hidden=True, |