From edfacb36cfc61956d5a9613e970cfcd455494204 Mon Sep 17 00:00:00 2001 From: Caleb <32375789+Fyssion@users.noreply.github.com> Date: Mon, 12 Sep 2022 14:31:08 -0500 Subject: [PATCH] [commands] Fix HybridCommandGroup._update_copy to update fallback Fix #8461 --- discord/ext/commands/hybrid.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/discord/ext/commands/hybrid.py b/discord/ext/commands/hybrid.py index afd5b8983..03fa726d4 100644 --- a/discord/ext/commands/hybrid.py +++ b/discord/ext/commands/hybrid.py @@ -706,6 +706,11 @@ class HybridGroup(Group[CogT, P, T]): # This is a very lazy copy because the CogMeta will properly copy it # with bindings and all later copy.app_command._children = self.app_command._children.copy() + + # Ensure the copy's fallback wraps the copy + if copy._fallback_command and self._fallback_command: + copy._fallback_command.wrapped = copy + return copy def autocomplete(