mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-09-06 09:56:09 +00:00
Add support for automod_quarantined_guild_tag member flag
This commit is contained in:
@ -2094,6 +2094,15 @@ class MemberFlags(BaseFlags):
|
||||
"""
|
||||
return 1 << 7
|
||||
|
||||
@flag_value
|
||||
def automod_quarantined_guild_tag(self):
|
||||
""":class:`bool`: Returns ``True`` if the member's guild tag has been
|
||||
blocked by AutoMod.
|
||||
|
||||
.. versionadded:: 2.6
|
||||
"""
|
||||
return 1 << 10
|
||||
|
||||
@flag_value
|
||||
def dm_settings_upsell_acknowledged(self):
|
||||
""":class:`bool`: Returns ``True`` if the member has dismissed the DM settings upsell.
|
||||
|
Reference in New Issue
Block a user