Browse Source

Copy internal attributes for command decorator state

This allows for copies to not clear the state the decorators had
set prior.
pull/7887/head
Rapptz 3 years ago
parent
commit
9ff90d7863
  1. 6
      discord/app_commands/commands.py

6
discord/app_commands/commands.py

@ -389,21 +389,21 @@ def _extract_parameters_from_callback(func: Callable[..., Any], globalns: Dict[s
except AttributeError:
pass
else:
_populate_renames(result, renames)
_populate_renames(result, renames.copy())
try:
choices = func.__discord_app_commands_param_choices__
except AttributeError:
pass
else:
_populate_choices(result, choices)
_populate_choices(result, choices.copy())
try:
autocomplete = func.__discord_app_commands_param_autocomplete__
except AttributeError:
pass
else:
_populate_autocomplete(result, autocomplete)
_populate_autocomplete(result, autocomplete.copy())
return result

Loading…
Cancel
Save