From 257de94acf718401bbe779e1f659206cea6ea18d Mon Sep 17 00:00:00 2001 From: Juni Date: Thu, 14 Apr 2022 23:03:42 -0400 Subject: [PATCH] Fix --- reactquote/reactquote.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index d0323ae..aac48da 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -137,7 +137,7 @@ class ReactQuote(commands.Cog): else: quotes = await self.config.guild(ctx.guild).quotes() numQuotes = len(quotes) - quote = f"{query}\n*Added Manually*)" + quote = f"{query}" timestamp = ctx.message.created_at embed = discord.Embed(timestamp=timestamp) if len(ctx.message.mentions) > 0: @@ -153,7 +153,7 @@ class ReactQuote(commands.Cog): "authorId": member.id, "messageId": None } - embed = await self._buildQuote(ctx, formattedMsg, numQuotes) + embed = await self._buildQuote(ctx, formattedMsg, numQuotes+1) await logChan.send(embed=embed)