We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
maximumStageBitrate : number
1 parent 02fc101 commit 4772c10Copy full SHA for 4772c10
1 file changed
packages/discord.js/src/structures/Guild.js
@@ -641,7 +641,7 @@ class Guild extends AnonymousGuild {
641
}
642
643
/**
644
- * The maximum bitrate available for this guild
+ * The maximum bitrate available for a voice channel in this guild
645
*
646
* @type {number}
647
* @readonly
@@ -663,6 +663,16 @@ class Guild extends AnonymousGuild {
663
664
665
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
+
676
677
* Fetches a collection of integrations to this guild.
678
* Resolves with a collection mapping integrations by their ids.
0 commit comments