From 51edba78bc4d4cb44b4dd2b79e4bbc515dc46f5b Mon Sep 17 00:00:00 2001 From: n1ck_pro <59617443+N1ckPro@users.noreply.github.com> Date: Wed, 15 Mar 2023 18:32:29 +0100 Subject: [PATCH] fix(TextBasedChannelTypes): add `GuildStageVoice` (#9232) fix(TextBasedChannelTypes): add GuildStageVoice --- packages/discord.js/src/util/Constants.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/discord.js/src/util/Constants.js b/packages/discord.js/src/util/Constants.js index 6ad30d300..f264e78d1 100644 --- a/packages/discord.js/src/util/Constants.js +++ b/packages/discord.js/src/util/Constants.js @@ -93,6 +93,7 @@ exports.NonSystemMessageTypes = [ * * {@link ChannelType.PublicThread} * * {@link ChannelType.PrivateThread} * * {@link ChannelType.GuildVoice} + * * {@link ChannelType.GuildStageVoice} * @typedef {ChannelType[]} TextBasedChannelTypes */ exports.TextBasedChannelTypes = [ @@ -103,6 +104,7 @@ exports.TextBasedChannelTypes = [ ChannelType.PublicThread, ChannelType.PrivateThread, ChannelType.GuildVoice, + ChannelType.GuildStageVoice, ]; /**