diff options
| author | 2019-02-01 22:37:15 -0500 | |
|---|---|---|
| committer | 2019-02-01 22:37:15 -0500 | |
| commit | d66c691688287239735251ad67a27c0b8d7db295 (patch) | |
| tree | 9ab1a0ce47debe336067190ea2c28109ec875d82 | |
| parent | Fixed errors after linting (diff) | |
Forgot to remove this.
Almost in hindsight, I almost forgot to remove this before creating the pull request.
*Yoink.*
| -rw-r--r-- | bot/cogs/site.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/bot/cogs/site.py b/bot/cogs/site.py index 442e80cd2..e5fd645fb 100644 --- a/bot/cogs/site.py +++ b/bot/cogs/site.py @@ -92,22 +92,6 @@ class Site: await ctx.send(embed=embed) - @site_group.command(name="rules") - async def site_rules(self, ctx: Context): - """Info about the server's rules.""" - - url = f"{URLs.site_schema}{URLs.site}/about/rules" - - embed = Embed(title="Rules") - embed.set_footer(text=url) - embed.colour = Colour.blurple() - embed.description = ( - f"The rules and guidelines that apply to this community can be found on our [rules page]({url}). " - "We expect all members of the community to have read and understood these." - ) - - await ctx.send(embed=embed) - def setup(bot): bot.add_cog(Site(bot)) |