fix number lining up

This commit is contained in:
Juni
2022-04-11 12:28:55 -04:00
parent 541b24ad5d
commit 83955761e0

View File

@@ -60,7 +60,7 @@ class ReactQuote(commands.Cog):
@commands.command() @commands.command()
async def removequote(self, ctx: commands.Context, quote_num:int): async def removequote(self, ctx: commands.Context, quote_num:int):
"""Remove Quote""" """Remove Quote"""
await self._removeQuote(ctx.guild, quote_num) await self._removeQuote(ctx.guild, quote_num-1)
await ctx.send(f"Removed quote #{quote_num}.") await ctx.send(f"Removed quote #{quote_num}.")
@commands.Cog.listener() @commands.Cog.listener()