Merge pull request #410 from miaowware/clocks

Renamed clock emoji to "stopwatch", added proper clock
This commit is contained in:
0x5c 2021-04-03 18:08:39 -04:00 committed by GitHub
commit 75bf8a638e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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)