From 3a4826a38a50c235d5b090028439fe28b3bcb224 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sat, 29 Jul 2023 15:58:53 -0400 Subject: [PATCH] feat: made suggestions show the user mention instead of their username --- suggestions/suggestions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/suggestions/suggestions.py b/suggestions/suggestions.py index 693651b..c18385e 100644 --- a/suggestions/suggestions.py +++ b/suggestions/suggestions.py @@ -86,7 +86,7 @@ class Suggestions(commands.Cog): embed = discord.Embed(color=await ctx.embed_colour(), description=suggestion) footer = [f"Suggested by {self.check_discrim(ctx.author)} ({ctx.author.id})", ctx.author.avatar_url] - author = [f"{self.check_discrim(ctx.author)}", ctx.author.avatar_url] + author = [f"{ctx.author.mention}", ctx.author.avatar_url] embed.set_footer( text=footer[0], icon_url=footer[1]