Renamed clock emoji to "stopwatch", added proper clock

Fixes #408
This commit is contained in:
0x5c 2021-04-03 18:06:14 -04:00
parent 9d419b159d
commit 9e36aab469
No known key found for this signature in database
GPG Key ID: A57F71C3176B9581
2 changed files with 3 additions and 2 deletions

View File

@ -66,7 +66,8 @@ emojis = SimpleNamespace(
question="",
no_entry="",
bangbang="‼️",
clock="",
clock="🕗",
stopwatch="",
a="🇦",
b="🇧",
c="🇨",

View File

@ -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)