diff options
author | 2021-04-19 22:08:46 +0200 | |
---|---|---|
committer | 2021-12-08 15:19:38 +0100 | |
commit | aa5485b5d91b1b1568a89c58853343a461e610f9 (patch) | |
tree | 45765bb0bc17e935cc86dc8f8da940f902c3d696 | |
parent | Move the rules command to the Information cog (diff) |
Remove the site help command
-rw-r--r-- | bot/exts/info/site.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bot/exts/info/site.py b/bot/exts/info/site.py index 665bff3a8..4b0b7649d 100644 --- a/bot/exts/info/site.py +++ b/bot/exts/info/site.py @@ -71,22 +71,6 @@ class Site(Cog): await ctx.send(embed=embed) - @site_group.command(name="help") - async def site_help(self, ctx: Context) -> None: - """Info about the site's Getting Help page.""" - url = f"{BASE_URL}/pages/guides/pydis-guides/asking-good-questions/" - - embed = Embed(title="Asking Good Questions") - embed.set_footer(text=url) - embed.colour = Colour.og_blurple() - embed.description = ( - "Asking the right question about something that's new to you can sometimes be tricky. " - f"To help with this, we've created a [guide to asking good questions]({url}) on our website. " - "It contains everything you need to get the very best help from our community." - ) - - await ctx.send(embed=embed) - @site_group.command(name="faq", root_aliases=("faq",)) async def site_faq(self, ctx: Context) -> None: """Info about the site's FAQ page.""" |