Browse Source
Fix support for guilds decorator with context menu commands
pull/7892/head
Harmon
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
discord/app_commands/commands.py
|
|
@ -873,7 +873,7 @@ class ContextMenu: |
|
|
|
self._param_name = param |
|
|
|
self._annotation = annotation |
|
|
|
self.module: Optional[str] = callback.__module__ |
|
|
|
self._guild_ids = guild_ids |
|
|
|
self._guild_ids = guild_ids or getattr(callback, '__discord_app_commands_default_guilds__', None) |
|
|
|
self.on_error: Optional[UnboundError] = None |
|
|
|
self.checks: List[Check] = getattr(callback, '__discord_app_commands_checks__', []) |
|
|
|
|
|
|
|