diff options
author | 2022-01-07 17:13:00 -0500 | |
---|---|---|
committer | 2022-01-07 17:13:00 -0500 | |
commit | f4e635a5558b137be5f61fc0a528d1205463eff2 (patch) | |
tree | 3c209ecc9561c80e69c7b97db5d1ac1ed9f44631 | |
parent | Merge pull request #1999 from PH-KDX/patch-2 (diff) |
changing vague parts of the talentpool to the user specified for clarity
-rw-r--r-- | bot/exts/recruitment/talentpool/_cog.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bot/exts/recruitment/talentpool/_cog.py b/bot/exts/recruitment/talentpool/_cog.py index 8fa0be5b1..de4c43b0e 100644 --- a/bot/exts/recruitment/talentpool/_cog.py +++ b/bot/exts/recruitment/talentpool/_cog.py @@ -281,7 +281,7 @@ class TalentPool(Cog, name="Talentpool"): if response_data.get('user', False): await ctx.send(":x: The specified user can't be found in the database tables") elif response_data.get('actor', False): - await ctx.send(":x: You have already nominated this user") + await ctx.send(f":x: You have already nominated {user.mention}") return else: @@ -438,7 +438,7 @@ class TalentPool(Cog, name="Talentpool"): json={"actor": actor.id, "reason": reason} ) await self.refresh_cache() # Update cache - await ctx.send(":white_check_mark: Successfully updated nomination reason.") + await ctx.send(f":white_check_mark: Successfully updated nomination reason for {actor.mention}") @nomination_edit_group.command(name='end_reason') @has_any_role(*MODERATION_ROLES) |