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)