From 0871b34fc86af49deb6db2436d3e77f5516fdcba Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 28 Jun 2023 08:20:34 -0400 Subject: [PATCH] [commands] Revert on_error when cog is ejected for HelpCommand --- discord/ext/commands/help.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/discord/ext/commands/help.py b/discord/ext/commands/help.py index 32228d205..163bc2694 100644 --- a/discord/ext/commands/help.py +++ b/discord/ext/commands/help.py @@ -294,6 +294,9 @@ class _HelpCommandImpl(Command): cog.walk_commands = cog.walk_commands.__wrapped__ self.cog = None + # Revert `on_error` to use the original one in case of race conditions + self.on_error = self._injected.on_help_command_error + class HelpCommand: r"""The base implementation for help command formatting.