Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion discord/flags.py
Original file line number Diff line number Diff line change
Expand Up @@ -2094,6 +2094,15 @@ def automod_quarantined_username(self):
"""
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.
Expand Down Expand Up @@ -2400,7 +2409,6 @@ def content_inventory_entry(self):
return 1 << 5


@fill_with_flags()
class InviteFlags(BaseFlags):
r"""Wraps up the Discord Invite flags

Expand Down