Browse Source

Add new message flags.

pull/150/head
Faster Speeding 5 years ago
parent
commit
6f83b1f641
  1. 11
      disco/types/message.py

11
disco/types/message.py

@ -378,6 +378,8 @@ class MessageFlags(BitsetMap):
CROSSPOSTED = 1 << 0 CROSSPOSTED = 1 << 0
IS_CROSSPOST = 1 << 1 IS_CROSSPOST = 1 << 1
SUPPRESS_EMBEDS = 1 << 2 SUPPRESS_EMBEDS = 1 << 2
SOURCE_MESSAGE_DELETED = 1 << 3
URGENT = 1 << 4
class MessageFlagValue(BitsetValue): class MessageFlagValue(BitsetValue):
@ -543,11 +545,16 @@ class Message(SlottedModel):
""" """
Toggle this message's embed suppression. Toggle this message's embed suppression.
Args Parameters
---- ----------
`state` `state`
Whether this message's embeds should be suppressed, Whether this message's embeds should be suppressed,
will just flip the state if not provided. will just flip the state if not provided.
Returns
-------
`bool`
The new state of the message's embed suppression.
""" """
flags = int(self.flags or 0) flags = int(self.flags or 0)
if state is None: if state is None:

Loading…
Cancel
Save