From 4411ed426b5ce3229f236ebfe2685c739ef3aba4 Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 11 Apr 2022 12:13:23 -0400 Subject: [PATCH] fix pos of new quote --- reactquote/reactquote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index c70e5cd..3100e54 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -59,6 +59,6 @@ class ReactQuote(commands.Cog): channel: discord.TextChannel = message.channel pos = await self._addQuote(message) if pos >= 0: - await channel.send(f"New quote added by {user.display_name} #{pos+1}\n({message.jump_url})") + await channel.send(f"New quote added by {user.display_name} #{pos}\n({message.jump_url})") else: return