feat: VoiceChannel Status

This commit is contained in:
Elysia
2024-01-26 20:26:39 +07:00
parent c257659c99
commit 5962c59684
3 changed files with 21 additions and 0 deletions

View File

@@ -90,6 +90,14 @@ class BaseGuildVoiceChannel extends GuildChannel {
if ('nsfw' in data) {
this.nsfw = data.nsfw;
}
if ('status' in data) {
/**
* The status of the voice channel (max 500 characters)
* @type {?string}
*/
this.status = data.status;
}
}
/**