From 8871bd34bed033f3183cf35a4112ed9f64444656 Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 11 Apr 2022 10:19:43 -0400 Subject: [PATCH] no mention in name --- reactquote/reactquote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index b9ca3bb..5dcc266 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -16,7 +16,7 @@ class ReactQuote(commands.Cog): quote = f"Quoted text will be here\n[(Jump)]({message.jump_url})" timestamp = datetime.now() embed = discord.Embed(timestamp=timestamp) - embed.set_author(name=message.author.mention(), icon_url=message.author.avatar_url) + embed.set_author(name=message.author.display_name, icon_url=message.author.avatar_url) embed.add_field(name="#1", value=quote, inline=False) return embed