Webpack build for branch 11.1-dev: a7e5e53e5d

This commit is contained in:
Travis CI 2017-08-20 20:22:33 +00:00
parent d2c36cb227
commit 2545837038
2 changed files with 3 additions and 3 deletions

View file

@ -11706,7 +11706,7 @@ class ReactionEmoji {
* Creates the text required to form a graphical emoji on Discord.
* @example
* // Send the emoji used in a reaction to the channel the reaction is part of
* reaction.message.channel.sendMessage(`The emoji used is ${reaction.emoji}`);
* reaction.message.channel.send(`The emoji used is ${reaction.emoji}`);
* @returns {string}
*/
toString() {
@ -17888,7 +17888,7 @@ class ClientUser extends User {
* <warn>This is only filled when using a user account.</warn>
* @type {?ClientUserSettings}
*/
if (data.user_settings) this.settings = new ClientUserSettings(this, data.user_settings);
this.settings = data.user_settings ? new ClientUserSettings(this, data.user_settings) : null;
}
edit(data) {

File diff suppressed because one or more lines are too long