mirror of
https://github.com/danbulant/discord.js
synced 2026-07-06 11:40:41 +00:00
Webpack build for branch 11.1-dev: a7e5e53e5d
This commit is contained in:
parent
d2c36cb227
commit
2545837038
2 changed files with 3 additions and 3 deletions
|
|
@ -11706,7 +11706,7 @@ class ReactionEmoji {
|
||||||
* Creates the text required to form a graphical emoji on Discord.
|
* Creates the text required to form a graphical emoji on Discord.
|
||||||
* @example
|
* @example
|
||||||
* // Send the emoji used in a reaction to the channel the reaction is part of
|
* // 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}
|
* @returns {string}
|
||||||
*/
|
*/
|
||||||
toString() {
|
toString() {
|
||||||
|
|
@ -17888,7 +17888,7 @@ class ClientUser extends User {
|
||||||
* <warn>This is only filled when using a user account.</warn>
|
* <warn>This is only filled when using a user account.</warn>
|
||||||
* @type {?ClientUserSettings}
|
* @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) {
|
edit(data) {
|
||||||
|
|
|
||||||
2
discord.11.1-dev.min.js
vendored
2
discord.11.1-dev.min.js
vendored
File diff suppressed because one or more lines are too long
Loading…
Reference in a new issue