From 9ca5b5c983a17dc21e700bf550d3684708c4a6d4 Mon Sep 17 00:00:00 2001 From: Travis CI Date: Sat, 16 Jun 2018 20:19:38 +0000 Subject: [PATCH] Webpack build for branch 11.3-dev: 507cce3ff49842c04047135df70bc80825c903a2 --- discord.11.3-dev.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/discord.11.3-dev.js b/discord.11.3-dev.js index 946a066d..6eddc49f 100644 --- a/discord.11.3-dev.js +++ b/discord.11.3-dev.js @@ -13107,6 +13107,10 @@ class GroupDMChannel extends Channel { } } + /** + * The ID of the last message in the channel, if one was sent + * @type {?Snowflake} + */ this.lastMessageID = data.last_message_id; } @@ -14994,6 +14998,10 @@ class DMChannel extends Channel { */ this.recipient = this.client.dataManager.newUser(data.recipients[0]); + /** + * The ID of the last message in the channel, if one was sent + * @type {?Snowflake} + */ this.lastMessageID = data.last_message_id; } @@ -15072,6 +15080,10 @@ class TextChannel extends GuildChannel { */ this.nsfw = Boolean(data.nsfw); + /** + * The ID of the last message sent in this channel, if one was sent + * @type {?Snowflake} + */ this.lastMessageID = data.last_message_id; }