@ -227,25 +227,45 @@ to handle it, which defaults to print a traceback and ignoring the exception.
.. function :: on_message_delete(message)
.. function :: on_message_delete(message)
Called when a message is deleted. If the message is not found in the
Called when a message is deleted. If the message is not found in the
internal message cache, then these events will not be called. This
internal message cache, then this event will not be called.
happens if the message is too old or the client is participating in high
Messages might not be in cache if the message is too old
traffic guilds. To fix this, increase the `` max_messages `` option of
or the client is participating in high traffic guilds.
:class: `Client` .
If this occurs increase the :attr: `Client.max_messages` attribute.
:param message: A :class:`Message` of the deleted message.
:param message: A :class:`Message` of the deleted message.
.. function :: on_bulk_message_delete(messages)
Called when messages are bulk deleted. If none of the messages deleted
are found in the internal message cache, then this event will not be called.
If individual messages were not found in the internal message cache,
this event will still be called, but the messages not found will not be included in
the messages list. Messages might not be in cache if the message is too old
or the client is participating in high traffic guilds.
If this occurs increase the :attr: `Client.max_messages` attribute.
:param messages: A :class:`list` of :class:`Message` that have been deleted.
.. function :: on_raw_message_delete(payload)
.. function :: on_raw_message_delete(payload)
Called when a message is deleted. Unlike :func: `on_message_delete` , this is
Called when a message is deleted. Unlike :func: `on_message_delete` , this is
called regardless of the message being in the internal message cache or not.
called regardless of the message being in the internal message cache or not.
If the message is found in the message cache,
it can be accessed via:attr: `RawMessageDeleteEvent.cached_message`
:param payload: The raw event payload data.
:param payload: The raw event payload data.
:type payload: :class:`RawMessageDeleteEvent`
:type payload: :class:`RawMessageDeleteEvent`
.. function :: on_raw_bulk_message_delete(payload)
.. function :: on_raw_bulk_message_delete(payload)
Called when a bulk delete is triggered. This event is called regardless
Called when a bulk delete is triggered. Unlike :func: `on_bulk_message_delete` , this is
of the message IDs being in the internal message cache or not.
called regardless of the messages being in the internal message cache or not.
If the messages are found in the message cache,
they can be accessed via :attr: `RawBulkMessageDeleteEvent.cached_messages`
:param payload: The raw event payload data.
:param payload: The raw event payload data.
:type payload: :class:`RawBulkMessageDeleteEvent`
:type payload: :class:`RawBulkMessageDeleteEvent`
@ -254,8 +274,10 @@ to handle it, which defaults to print a traceback and ignoring the exception.
Called when a :class: `Message` receives an update event. If the message is not found
Called when a :class: `Message` receives an update event. If the message is not found
in the internal message cache, then these events will not be called.
in the internal message cache, then these events will not be called.
This happens if the message is too old or the client is participating in high
Messages might not be in cache if the message is too old
traffic guilds. To fix this, increase the `` max_messages `` option of :class: `Client` .
or the client is participating in high traffic guilds.
If this occurs increase the :attr: `Client.max_messages` attribute.
The following non-exhaustive cases trigger this event:
The following non-exhaustive cases trigger this event:
@ -288,7 +310,7 @@ to handle it, which defaults to print a traceback and ignoring the exception.
.. function :: on_reaction_add(reaction, user)
.. function :: on_reaction_add(reaction, user)
Called when a message has a reaction added to it. Similar to on_message_edit,
Called when a message has a reaction added to it. Similar to :func: ` on_message_edit` ,
if the message is not found in the internal message cache, then this
if the message is not found in the internal message cache, then this
event will not be called.
event will not be called.