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

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;