aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheOneMusic <[email protected]>2021-04-15 14:03:56 +0200
committerGitHub <[email protected]>2021-04-15 08:03:56 -0400
commitd21e65ce47cfa88bfc32a5192d684bed384bf460 (patch)
treef00c8e6309ae4e9a6df533e08210f765f453b65c
parentFix guild.chunk() not working on evicted guilds (diff)
downloaddiscord.py-d21e65ce47cfa88bfc32a5192d684bed384bf460.tar.xz
discord.py-d21e65ce47cfa88bfc32a5192d684bed384bf460.zip
Add SystemChannelFlags.guild_reminder_notifications
-rw-r--r--discord/flags.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/discord/flags.py b/discord/flags.py
index 7585222a..cb268d09 100644
--- a/discord/flags.py
+++ b/discord/flags.py
@@ -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):