Webpack build for branch 11.3-dev: 507cce3ff4

This commit is contained in:
Travis CI 2018-06-16 20:19:38 +00:00
parent 8b20e3aaca
commit 9ca5b5c983

View file

@ -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;
}