Browse Source
[commands] Fix HybridCommandGroup._update_copy to update fallback
Fix #8461
pull/8469/head
Caleb
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
0 deletions
-
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( |
|
|
|