diff options
author | 2019-02-08 13:03:17 +0530 | |
---|---|---|
committer | 2019-02-08 13:03:17 +0530 | |
commit | c795dc7b8243fbed8b21d2e876cb1968caa91e0a (patch) | |
tree | 72afd04365efa24c12fae32478c11b70c6b82d5b | |
parent | added a color called bright_green to the colors class.gave the variables more... (diff) |
fixed the issues
-rw-r--r-- | bot/seasons/valentines/savethedate.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/bot/seasons/valentines/savethedate.py b/bot/seasons/valentines/savethedate.py index e978d624..a9bddd34 100644 --- a/bot/seasons/valentines/savethedate.py +++ b/bot/seasons/valentines/savethedate.py @@ -28,9 +28,11 @@ class SaveTheDate: random_date = random.choice(valentine_dates['ideas']) emoji_1 = random.choice(HEART_EMOJIS) emoji_2 = random.choice(HEART_EMOJIS) - embed = discord.Embed(title=f"{emoji_1}{random_date['name']}{emoji_2}", - description=f"{random_date['description']}", - colour=Colours.bright_green) + embed = discord.Embed( + title=f"{emoji_1}{random_date['name']}{emoji_2}", + description=f"{random_date['description']}", + colour=Colours.pink + ) await ctx.send(embed=embed) |