aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar S. Co1 <[email protected]>2019-09-25 10:29:56 -0400
committerGravatar S. Co1 <[email protected]>2019-09-25 10:29:56 -0400
commit3445cbf518054cec43d907ca32761bd19498722e (patch)
tree100ee09e66e6e8919e6cf931f4844091d38545bd
parentDecouple warnings and notes (diff)
Unhide the tags command
KAIZEN! Closes #385
-rw-r--r--bot/cogs/tags.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/cogs/tags.py b/bot/cogs/tags.py
index 660620284..b9dd3595e 100644
--- a/bot/cogs/tags.py
+++ b/bot/cogs/tags.py
@@ -26,7 +26,7 @@ class Tags(Cog):
self.bot = bot
self.tag_cooldowns = {}
- @group(name='tags', aliases=('tag', 't'), hidden=True, invoke_without_command=True)
+ @group(name='tags', aliases=('tag', 't'), invoke_without_command=True)
async def tags_group(self, ctx: Context, *, tag_name: TagNameConverter = None) -> None:
"""Show all known tags, a single tag, or run a subcommand."""
await ctx.invoke(self.get_command, tag_name=tag_name)