From 6e5392c6e2af1b93509c82c9124cee4239ccfb37 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Sat, 24 Sep 2022 01:22:03 -0400 Subject: [PATCH] Fix Tree.on_error still being called when a bound error handler is set Closes #8455 --- discord/app_commands/commands.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord/app_commands/commands.py b/discord/app_commands/commands.py index e7c94f935..54236bec9 100644 --- a/discord/app_commands/commands.py +++ b/discord/app_commands/commands.py @@ -830,6 +830,10 @@ class Command(Generic[GroupT, P, T]): if not hasattr(parent.parent.on_error, '__discord_app_commands_base_function__'): return True + # Check if we have a bound error handler + if hasattr(self.binding, '__discord_app_commands_error_handler__'): + return True + return False async def _transform_arguments(self, interaction: Interaction, namespace: Namespace) -> Dict[str, Any]: