From eee65ac39b85edc0353402baa42ca7e72ec286d9 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 2 May 2022 19:08:25 -0400 Subject: [PATCH] [commands] Pass permissions v2 information to HybridGroup --- discord/ext/commands/hybrid.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/discord/ext/commands/hybrid.py b/discord/ext/commands/hybrid.py index 9eaf509f0..a5e9deec8 100644 --- a/discord/ext/commands/hybrid.py +++ b/discord/ext/commands/hybrid.py @@ -481,10 +481,14 @@ class HybridGroup(Group[CogT, P, T]): raise TypeError(f'HybridGroup parent must be HybridGroup not {self.parent.__class__}') guild_ids = attrs.pop('guild_ids', None) or getattr(self.callback, '__discord_app_commands_default_guilds__', None) + guild_only = getattr(self.callback, '__discord_app_commands_guild_only__', False) + default_permissions = getattr(self.callback, '__discord_app_commands_default_permissions__', None) self.app_command: app_commands.Group = app_commands.Group( name=self.name, description=self.description or self.short_doc or '…', guild_ids=guild_ids, + guild_only=guild_only, + default_permissions=default_permissions, ) # This prevents the group from re-adding the command at __init__