aboutsummaryrefslogtreecommitdiffstats
path: root/bot/exts/evergreen/duck_game.py
diff options
context:
space:
mode:
authorGravatar Cam Caswell <[email protected]>2021-07-08 20:31:10 -0400
committerGravatar Cam Caswell <[email protected]>2021-07-09 14:02:38 -0400
commitf07854c0429abf4f774b80191d4092f755d73813 (patch)
tree29c9d5dac06f51ab1193205ef703357089668515 /bot/exts/evergreen/duck_game.py
parentAdd help command (diff)
Change the "incorrect" emoji
Diffstat (limited to 'bot/exts/evergreen/duck_game.py')
-rw-r--r--bot/exts/evergreen/duck_game.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/evergreen/duck_game.py b/bot/exts/evergreen/duck_game.py
index 160e3cc4..5c83efa7 100644
--- a/bot/exts/evergreen/duck_game.py
+++ b/bot/exts/evergreen/duck_game.py
@@ -12,7 +12,7 @@ from PIL import Image, ImageDraw
from discord.ext import commands
from bot.bot import Bot
-from bot.constants import Colours, Emojis
+from bot.constants import Colours
DECK = list(product(*[(0, 1, 2)]*4))
@@ -35,7 +35,7 @@ ALL_CARDS = Image.open(p)
CARD_WIDTH = 155
CARD_HEIGHT = 97
-EMOJI_WRONG = Emojis.x
+EMOJI_WRONG = "\u274C"
ANSWER_REGEX = re.compile(r'^\D*(\d+)\D+(\d+)\D+(\d+)\D*$')