diff --git a/discord/guild.py b/discord/guild.py index 1fa4b7da3..4d74ec921 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -246,6 +246,7 @@ class Guild(Hashable): - ``VERIFIED``: Guild is a verified server. - ``VIP_REGIONS``: Guild can have 384kbps bitrate in voice channels. - ``WELCOME_SCREEN_ENABLED``: Guild has enabled the welcome screen. + - ``INVITES_DISABLED``: Guild has disabled invites. premium_tier: :class:`int` The premium tier for this guild. Corresponds to "Nitro Server" in the official UI. @@ -1715,6 +1716,8 @@ class Guild(Hashable): rules_channel: Optional[TextChannel] = MISSING, public_updates_channel: Optional[TextChannel] = MISSING, premium_progress_bar_enabled: bool = MISSING, + discoverable: bool = MISSING, + invites_disabled: bool = MISSING, ) -> Guild: r"""|coro| @@ -1744,6 +1747,9 @@ class Guild(Hashable): .. versionchanged:: 2.0 The ``premium_progress_bar_enabled`` keyword parameter was added. + .. versionchanged:: 2.1 + The ``discoverable`` and ``invites_disabled`` keyword parameters were added. + Parameters ---------- name: :class:`str` @@ -1803,6 +1809,10 @@ class Guild(Hashable): public updates channel. premium_progress_bar_enabled: :class:`bool` Whether the premium AKA server boost level progress bar should be enabled for the guild. + discoverable: :class:`bool` + Whether server discovery is enabled for this guild. + invites_disabled: :class:`bool` + Whether joining via invites should be disabled for the guild. reason: Optional[:class:`str`] The reason for editing this guild. Shows up on the audit log. @@ -1923,17 +1933,34 @@ class Guild(Hashable): fields['system_channel_flags'] = system_channel_flags.value - if community is not MISSING: - features = [] - if community: - if 'rules_channel_id' in fields and 'public_updates_channel_id' in fields: - features.append('COMMUNITY') + if any(feat is not MISSING for feat in (community, discoverable, invites_disabled)): + + features = set(self.features) + + if community is not MISSING: + if community: + if 'rules_channel_id' in fields and 'public_updates_channel_id' in fields: + features.add('COMMUNITY') + else: + raise ValueError( + 'community field requires both rules_channel and public_updates_channel fields to be provided' + ) else: - raise ValueError( - 'community field requires both rules_channel and public_updates_channel fields to be provided' - ) + features.discard('COMMUNITY') + + if discoverable is not MISSING: + if discoverable: + features.add('DISCOVERABLE') + else: + features.discard('DISCOVERABLE') + + if invites_disabled is not MISSING: + if invites_disabled: + features.add('INVITES_DISABLED') + else: + features.discard('INVITES_DISABLED') - fields['features'] = features + fields['features'] = list(features) if premium_progress_bar_enabled is not MISSING: fields['premium_progress_bar_enabled'] = premium_progress_bar_enabled diff --git a/discord/types/guild.py b/discord/types/guild.py index be0acccb0..93f486462 100644 --- a/discord/types/guild.py +++ b/discord/types/guild.py @@ -77,6 +77,7 @@ GuildFeature = Literal[ 'VERIFIED', 'VIP_REGIONS', 'WELCOME_SCREEN_ENABLED', + 'INVITES_DISABLED', ]