Browse Source
Change PUBLIC to COMMUNITY in Guild.edit
pull/7750/head
curiositIy
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
3 additions and
3 deletions
-
discord/guild.py
|
|
@ -1601,7 +1601,7 @@ class Guild(Hashable): |
|
|
|
The new name of the guild. |
|
|
|
description: Optional[:class:`str`] |
|
|
|
The new description of the guild. Could be ``None`` for no description. |
|
|
|
This is only available to guilds that contain ``PUBLIC`` in :attr:`Guild.features`. |
|
|
|
This is only available to guilds that contain ``COMMUNITY`` in :attr:`Guild.features`. |
|
|
|
icon: :class:`bytes` |
|
|
|
A :term:`py:bytes-like object` representing the icon. Only PNG/JPEG is supported. |
|
|
|
GIF is only available to guilds that contain ``ANIMATED_ICON`` in :attr:`Guild.features`. |
|
|
@ -1646,11 +1646,11 @@ class Guild(Hashable): |
|
|
|
The new preferred locale for the guild. Used as the primary language in the guild. |
|
|
|
rules_channel: Optional[:class:`TextChannel`] |
|
|
|
The new channel that is used for rules. This is only available to |
|
|
|
guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no rules |
|
|
|
guilds that contain ``COMMUNITY`` in :attr:`Guild.features`. Could be ``None`` for no rules |
|
|
|
channel. |
|
|
|
public_updates_channel: Optional[:class:`TextChannel`] |
|
|
|
The new channel that is used for public updates from Discord. This is only available to |
|
|
|
guilds that contain ``PUBLIC`` in :attr:`Guild.features`. Could be ``None`` for no |
|
|
|
guilds that contain ``COMMUNITY`` in :attr:`Guild.features`. Could be ``None`` for no |
|
|
|
public updates channel. |
|
|
|
premium_progress_bar_enabled: :class:`bool` |
|
|
|
Whether the premium AKA server boost level progress bar should be enabled for the guild. |
|
|
|