diff options
| author | 2021-09-05 01:13:49 -0400 | |
|---|---|---|
| committer | 2021-09-24 22:03:19 -0400 | |
| commit | f96ecffb3927acd254158210655524e24db37d3b (patch) | |
| tree | db01249f9b952c6445f67c79b689e7206c34b95b /bot/exts/fun | |
| parent | Bring end_game up to date (diff) | |
Change board embed color
Can't update color when the game is over anymore
Diffstat (limited to 'bot/exts/fun')
| -rw-r--r-- | bot/exts/fun/duck_game.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/fun/duck_game.py b/bot/exts/fun/duck_game.py index 46ea36fe..a456c86b 100644 --- a/bot/exts/fun/duck_game.py +++ b/bot/exts/fun/duck_game.py @@ -11,7 +11,7 @@ from PIL import Image, ImageDraw, ImageFont  from discord.ext import commands  from bot.bot import Bot -from bot.constants import Colours, MODERATION_ROLES +from bot.constants import MODERATION_ROLES  from bot.utils.decorators import with_role  DECK = list(product(*[(0, 1, 2)]*4)) @@ -262,7 +262,7 @@ class DuckGamesDirector(commands.Cog):              file = discord.File(fp=image_stream, filename="board.png")          embed = discord.Embed(              title="Duck Duck Duck Goose!", -            color=Colours.bright_green, +            color=discord.Color.dark_purple(),          )          embed.set_image(url="attachment://board.png")          return await ctx.send(embed=embed, file=file) | 
