From d303e0af5b2dfe2f7ca83c85580bbc0b544140aa Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 11 Apr 2022 09:50:57 -0400 Subject: [PATCH] test --- reactquote/reactquote.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index 9f938ac..acc0b11 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -13,9 +13,11 @@ class ReactQuote(commands.Cog): def _buildQuote(self): embed = discord.Embed() - embed.add_field(name="#1", value="Quoted text will be here", inline=False) + quote = "Quoted text will be here\n- @Juni [(Jump)](https://discord.com/channels/898593470606889000/929701114641809438/963069688177360927)" + embed.add_field(name="#1", value=quote, inline=False) time = datetime.now() - embed.set_footer(text=time.ctime()) + footer = "" + embed.set_footer(text=footer) return embed @commands.command()