From 4772c10668d99e4c2e45cb43fc7ddf17326f740e Mon Sep 17 00:00:00 2001 From: IllagerCaptain <76600137+IllagerCaptain@users.noreply.github.com> Date: Wed, 26 Nov 2025 20:53:10 -0600 Subject: [PATCH] Add `maximumStageBitrate : number` --- packages/discord.js/src/structures/Guild.js | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/packages/discord.js/src/structures/Guild.js b/packages/discord.js/src/structures/Guild.js index 72e03bb4a27b..1fdb1bff3373 100644 --- a/packages/discord.js/src/structures/Guild.js +++ b/packages/discord.js/src/structures/Guild.js @@ -641,7 +641,7 @@ class Guild extends AnonymousGuild { } /** - * The maximum bitrate available for this guild + * The maximum bitrate available for a voice channel in this guild * * @type {number} * @readonly @@ -663,6 +663,16 @@ class Guild extends AnonymousGuild { } } + /** + * The maximum bitrate available for a stage channel in this guild + * + * @type {number} + * @readonly + */ + get maximumStageBitrate() { + return 64_000; + } + /** * Fetches a collection of integrations to this guild. * Resolves with a collection mapping integrations by their ids.