diff options
| author | 2019-09-12 16:30:46 +0200 | |
|---|---|---|
| committer | 2019-09-12 16:30:46 +0200 | |
| commit | 5303f4c7f708f010450ba187a868bd8ef05fa780 (patch) | |
| tree | 331d32b678b0b7cc063fc3872f7ca189e022e0a8 | |
| parent | Add help-6 and help-7 to constants (diff) | |
Update bot cog with recent changes.
The bot cog was not updated with recent changes to our
community, so I've:
- Updated the links in the about embed to GitHub;
- Added help-6 and help-7 to the codeblock detection.
| -rw-r--r-- | bot/cogs/bot.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/bot/cogs/bot.py b/bot/cogs/bot.py index 828e2514c..4a0f208f4 100644 --- a/bot/cogs/bot.py +++ b/bot/cogs/bot.py @@ -32,6 +32,8 @@ class Bot: Channels.help_3: 0, Channels.help_4: 0, Channels.help_5: 0, + Channels.help_6: 0, + Channels.help_7: 0, Channels.python: 0, } @@ -62,13 +64,13 @@ class Bot: embed = Embed( description="A utility bot designed just for the Python server! Try `!help` for more info.", - url="https://gitlab.com/discord-python/projects/bot" + url="https://github.com/python-discord/bot" ) embed.add_field(name="Total Users", value=str(len(self.bot.get_guild(Guild.id).members))) embed.set_author( name="Python Bot", - url="https://gitlab.com/discord-python/projects/bot", + url="https://github.com/python-discord/bot", icon_url=URLs.bot_avatar ) |