Add SystemChannelFlags.guild_reminder_notifications

This commit is contained in:
TheOneMusic 2021-04-15 14:03:56 +02:00 committed by GitHub
parent 65d48302ad
commit d21e65ce47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -199,6 +199,14 @@ class SystemChannelFlags(BaseFlags):
""":class:`bool`: Returns ``True`` if the system channel is used for Nitro boosting notifications."""
return 2
@flag_value
def guild_reminder_notifications(self):
""":class:`bool`: Returns ``True`` if the system channel is used for server setup helpful tips notifications.
.. versionadded:: 2.0
"""
return 4
@fill_with_flags()
class MessageFlags(BaseFlags):