Webpack build for branch master: d93d628f19

This commit is contained in:
Travis CI 2018-01-27 23:10:34 +00:00
parent 07269365a7
commit 7cd7629496
2 changed files with 10 additions and 8 deletions

View file

@ -7155,13 +7155,6 @@ class Message extends Base {
*/
this.author = this.client.users.add(data.author, !data.webhook_id);
/**
* Represents the author of the message as a guild member.
* Only available if the message comes from a guild where the author is still a member
* @type {?GuildMember}
*/
this.member = this.guild ? this.guild.member(this.author) || null : null;
/**
* Whether or not this message is pinned
* @type {boolean}
@ -7302,6 +7295,15 @@ class Message extends Base {
);
}
/**
* Represents the author of the message as a guild member.
* Only available if the message comes from a guild where the author is still a member
* @type {?GuildMember}
*/
get member() {
return this.guild ? this.guild.member(this.author) || null : null;
}
/**
* The time the message was sent at
* @type {Date}

File diff suppressed because one or more lines are too long