diff --git a/discord/message.py b/discord/message.py index e2cfe866e..7e8440f4c 100644 --- a/discord/message.py +++ b/discord/message.py @@ -347,6 +347,9 @@ class Message: def __repr__(self): return ''.format(self) + def __eq__(self, other): + return isinstance(other, self.__class__) and self.id == other.id + def _try_patch(self, data, key, transform=None): try: value = data[key] diff --git a/docs/api.rst b/docs/api.rst index 028bc9947..759aece6a 100644 --- a/docs/api.rst +++ b/docs/api.rst @@ -903,6 +903,15 @@ of :class:`enum.Enum`. Specifies the type of :class:`Message`. This is used to denote if a message is to be interpreted as a system message or a regular message. + .. container:: operations + + .. describe:: x == y + + Checks if two messages are equal. + .. describe:: x != y + + Checks if two messages are not equal. + .. attribute:: default The default message type. This is the same as regular messages.