From d21e65ce47cfa88bfc32a5192d684bed384bf460 Mon Sep 17 00:00:00 2001 From: TheOneMusic <44474247+TheOneMusic@users.noreply.github.com> Date: Thu, 15 Apr 2021 14:03:56 +0200 Subject: [PATCH] Add SystemChannelFlags.guild_reminder_notifications --- discord/flags.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/discord/flags.py b/discord/flags.py index 7585222af..cb268d09b 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):