diff options
| author | Rapptz <[email protected]> | 2021-02-18 00:23:58 -0500 |
|---|---|---|
| committer | Rapptz <[email protected]> | 2021-02-18 00:23:58 -0500 |
| commit | 0cd1a88316a9d35d54da04b6992cb26e7b0e7527 (patch) | |
| tree | 40ae7cfa31097619ad2468dd5ec6809802877603 | |
| parent | [commands] Handle positional-only parameters in bot commands (diff) | |
| download | discord.py-0cd1a88316a9d35d54da04b6992cb26e7b0e7527.tar.xz discord.py-0cd1a88316a9d35d54da04b6992cb26e7b0e7527.zip | |
Clarify Message.nonce documentation
Fix #2451
| -rw-r--r-- | discord/message.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/discord/message.py b/discord/message.py index 7df7f6c9..bdb9e05d 100644 --- a/discord/message.py +++ b/discord/message.py @@ -406,7 +406,7 @@ class Message(Hashable): The actual contents of the message. nonce The value used by the discord guild and the client to verify that the message is successfully sent. - This is typically non-important. + This is not stored long term within Discord's servers and is only used ephemerally. embeds: List[:class:`Embed`] A list of embeds the message has. channel: Union[:class:`abc.Messageable`] |