diff options
| author | 2020-08-10 14:31:11 -0700 | |
|---|---|---|
| committer | 2020-08-10 14:31:11 -0700 | |
| commit | df51b8c11a3a42ae13dd00d8b994d5f1d70638e7 (patch) | |
| tree | 3abdb46562661f5d0acd821c698dfbbed60d2386 | |
| parent | ALL_ALLOWED_CHANNELS now is a list of channel IDs instead of None. (diff) | |
Gave the Embed the burple color.
| -rw-r--r-- | bot/exts/evergreen/conversationstarters.py | 6 | 
1 files changed, 4 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/conversationstarters.py b/bot/exts/evergreen/conversationstarters.py index 8a07eea2..179fe478 100644 --- a/bot/exts/evergreen/conversationstarters.py +++ b/bot/exts/evergreen/conversationstarters.py @@ -2,7 +2,7 @@ import json  import random  from pathlib import Path -from discord import Embed +from discord import Color, Embed  from discord.ext import commands  from bot.constants import WHITELISTED_CHANNELS @@ -55,7 +55,9 @@ class ConvoStarters(commands.Cog):                      description=(                          "No topics found for this Python channel. You can suggest new ideas for topics "                          "[here](https://github.com/python-discord/seasonalbot/issues/426)!" -                    )) +                    ), +                    color=Color.blurple +                )                  await ctx.send(embed=embed) | 
