feat (VoiceState) add setStatus function

This commit is contained in:
Yellowy
2023-10-07 19:33:47 -05:00
parent a34e442e09
commit b65545ad81
2 changed files with 18 additions and 0 deletions

View File

@@ -214,6 +214,23 @@ class VoiceState extends Base {
return this.guild.members.edit(this.id, { channel }, reason);
}
/**
* Sets the status of the voice channel
* @param {string} status The message to set the channel status to
* @returns {Promise<void>}
*/
async setStatus(status) {
if (this.channel?.id) {
if (this.channel?.type !== 'GUILD_VOICE') throw new Error('VOICE_NOT_GUILD_CHANNEL');
await this.client.api.channels(this.channel.id, 'voice-status').put({
data: {
status,
},
});
}
}
/**
* Toggles the request to speak in the channel.
* Only applicable for stage channels and for the client's own voice state.