mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-18 20:43:30 +01:00
Fix ClientUser#settings not showing up in the documentation (#1757)
This commit is contained in:
@@ -78,7 +78,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;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* All of the user's guild settings
|
* All of the user's guild settings
|
||||||
|
|||||||
Reference in New Issue
Block a user