Add on_message_edit event.

This commit is contained in:
Rapptz
2015-08-21 22:02:03 -04:00
parent 794991adb6
commit ef7dd42f28
3 changed files with 42 additions and 3 deletions

View File

@ -39,10 +39,16 @@ This page outlines the different types of events listened to by :meth:`Client.ev
:param response: The received message response after gone through ``json.loads``.
.. function:: on_message_delete(message)
.. function:: on_message_edit(before, after)
Called when a message is deleted from any given server.
Called when a message is deleted or edited from any given server. If the message is not found in the
:attr:`Client.messages` cache, then these events will not be called. This happens if the message
is too old or the client is participating in high traffic servers. To fix this, increase
the ``max_length`` option of :class:`Client`.
:param message: A :class:`Message` of the deleted message.
:param before: A :class:`Message` of the previous version of the message.
:param after: A :class:`Message` of the current version of the message.
Data Classes