Changes "has paid respects" to "has paid their respects". (#79)

* Changes "has paid respects" to "has paid their respects".

* Fixes dumb grammtical error
This commit is contained in:
dudeamax99
2019-11-08 21:30:34 -05:00
committed by aikaterna
parent 70f52f8832
commit 8f119435da

View File

@@ -57,5 +57,5 @@ class PressF(commands.Cog):
return
if user.id not in self.channels[str(reaction.message.channel.id)]['reacted']:
if str(reaction.emoji) == "\U0001f1eb":
await reaction.message.channel.send(f"**{user.display_name}** has paid respects.")
await reaction.message.channel.send(f"**{user.display_name}** has paid their respects.")
self.channels[str(reaction.message.channel.id)]['reacted'].append(user.id)