From 98f7266c6f230482269682b4c740652ef898f234 Mon Sep 17 00:00:00 2001 From: Dan Hess Date: Sat, 24 Apr 2021 15:42:50 -0800 Subject: [PATCH] Fix command --- cogs/misc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/misc.py b/cogs/misc.py index 90fa6be..9c5f2b7 100644 --- a/cogs/misc.py +++ b/cogs/misc.py @@ -281,7 +281,7 @@ class Miscellaneous(commands.Cog): if command is None: return await ctx.send("https://github.com/Phxntxm/Bonfire") - obj = self.bot.get_command(command) + obj = ctx.bot.get_command(command) if obj is None: return await ctx.send(f"Could not find command {command}")