From 9e36aab469461563f0831b4c56aa4c363508a6eb Mon Sep 17 00:00:00 2001 From: 0x5c Date: Sat, 3 Apr 2021 18:06:14 -0400 Subject: [PATCH] Renamed clock emoji to "stopwatch", added proper clock Fixes #408 --- common.py | 3 ++- exts/study.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index 1ff4e21..e231bcc 100644 --- a/common.py +++ b/common.py @@ -66,7 +66,8 @@ emojis = SimpleNamespace( question="❓", no_entry="⛔", bangbang="‼️", - clock="⏱", + clock="🕗", + stopwatch="⏱", a="🇦", b="🇧", c="🇨", diff --git a/exts/study.py b/exts/study.py index 9f8eda8..ec2e2f5 100644 --- a/exts/study.py +++ b/exts/study.py @@ -170,7 +170,7 @@ class StudyCog(commands.Cog): except asyncio.TimeoutError: embed.set_field_at(1, name="Answers", value=answers_str_bolded, inline=False) embed.set_field_at(2, name="Answer", - value=(f"{cmn.emojis.clock} " + value=(f"{cmn.emojis.stopwatch} " f"**Timed out!** The correct answer was {self.choices[question['answer']]}")) embed.colour = cmn.colours.timeout await q_msg.edit(embed=embed)