From ddfa57e96dac14bd25fd41e6b9c943c3ff61e192 Mon Sep 17 00:00:00 2001 From: Mythic Date: Sun, 25 Jun 2017 01:21:21 +0300 Subject: [PATCH] Improve Message's ID attribute documentation (#1450) Remove the implication that a Message object's ID is unique only to the channel it was sent on Message ID's are snowflakes, and as stated in Discord's API documentation, globally unique throughout Discord --- src/structures/Message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Message.js b/src/structures/Message.js index 7f2a54099..093da2be1 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -33,7 +33,7 @@ class Message { setup(data) { // eslint-disable-line complexity /** - * The ID of the message (unique in the channel it was sent) + * The ID of the message * @type {Snowflake} */ this.id = data.id;