diff --git a/reactquote/reactquote.py b/reactquote/reactquote.py index 72a2ed2..cd22cad 100644 --- a/reactquote/reactquote.py +++ b/reactquote/reactquote.py @@ -10,18 +10,11 @@ class ReactQuote(commands.Cog): def _wrapQuote(self, msg): return msg - @commands.command() - async def reactquote(self, ctx: commands.Context): - """TestCommand""" - # Your code will go here - await ctx.send("I can do stuff, really!") - - @commands.command() async def quote(self, ctx: commands.Context): """TestCommand""" # Your code will go here - await ctx.send("I can do stuff, really!") + await ctx.send("I'd recall a random quote if I could...") @commands.Cog.listener() async def on_raw_reaction_add(self, payload:discord.RawReactionActionEvent):