From 423fd1bc26650b99fad7c5b7cb6ea618bee52b2a Mon Sep 17 00:00:00 2001 From: jack1142 <6032823+jack1142@users.noreply.github.com> Date: Thu, 17 Feb 2022 17:19:32 +0100 Subject: [PATCH] Add SystemChannelFlags.join_notification_replies Add SUPPRESS_JOIN_NOTIFICATION_REPLIES system channel flag See: discord/discord-api-docs#3977 --- discord/flags.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/discord/flags.py b/discord/flags.py index fb468c50b..4e77b96d4 100644 --- a/discord/flags.py +++ b/discord/flags.py @@ -216,6 +216,15 @@ class SystemChannelFlags(BaseFlags): """ return 4 + @flag_value + def join_notification_replies(self): + """:class:`bool`: Returns ``True`` if sticker reply button ("Wave to say hi!") is + shown for member join notifications. + + .. versionadded:: 2.0 + """ + return 8 + @fill_with_flags() class MessageFlags(BaseFlags):