Merge pull request #721 from fknMega/patch-2

Added Pronouns support
This commit is contained in:
Elysia 2023-06-21 11:45:19 +07:00 committed by GitHub
commit a176df7e20
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,6 +87,9 @@ class ClientUser extends User {
if ('bio' in data) {
this.bio = data.bio;
}
if ('pronouns' in data) {
this.pronouns = data.pronouns;
}
if (!this.friendNicknames?.size) {
/**
@ -611,6 +614,15 @@ class ClientUser extends User {
setGlobalName(globalName = '') {
return this.edit({ global_name: globalName });
}
/**
* Set pronouns
* @param {string | null} pronouns
* @returns {Promise<ClientUser>}
*/
setPronouns(pronouns = '') {
return this.edit({ pronouns });
}
}
module.exports = ClientUser;