Skip to content

Commit 4772c10

Browse files
Add maximumStageBitrate : number
1 parent 02fc101 commit 4772c10

1 file changed

Lines changed: 11 additions & 1 deletion

File tree

  • packages/discord.js/src/structures

packages/discord.js/src/structures/Guild.js

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ class Guild extends AnonymousGuild {
641641
}
642642

643643
/**
644-
* The maximum bitrate available for this guild
644+
* The maximum bitrate available for a voice channel in this guild
645645
*
646646
* @type {number}
647647
* @readonly
@@ -663,6 +663,16 @@ class Guild extends AnonymousGuild {
663663
}
664664
}
665665

666+
/**
667+
* The maximum bitrate available for a stage channel in this guild
668+
*
669+
* @type {number}
670+
* @readonly
671+
*/
672+
get maximumStageBitrate() {
673+
return 64_000;
674+
}
675+
666676
/**
667677
* Fetches a collection of integrations to this guild.
668678
* Resolves with a collection mapping integrations by their ids.

0 commit comments

Comments
 (0)