From 541b24ad5dbe8e827dbb4ae41a344edced071db1 Mon Sep 17 00:00:00 2001 From: Juni Date: Mon, 11 Apr 2022 12:27:11 -0400 Subject: [PATCH] removal --- reactquote/reactquote.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index 0f014ae..da67511 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -58,9 +58,10 @@ class ReactQuote(commands.Cog): @commands.admin_or_permissions(manage_guild=True) @commands.command() - async def removeQuote(self, ctx: commands.Context, n:int): + async def removequote(self, ctx: commands.Context, quote_num:int): """Remove Quote""" - await ctx.send(f"I Got {n}") + await self._removeQuote(ctx.guild, quote_num) + await ctx.send(f"Removed quote #{quote_num}.") @commands.Cog.listener() async def on_raw_reaction_add(self, payload:discord.RawReactionActionEvent):