From 24f0fcd563a22dc3b88e6efd0f6b753335e1bda1 Mon Sep 17 00:00:00 2001 From: Iris System Date: Sun, 7 May 2023 22:14:06 +1200 Subject: [PATCH] fix(bot): allow proxying in stage text channels (fixes #550) --- PluralKit.Bot/Utils/DiscordUtils.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PluralKit.Bot/Utils/DiscordUtils.cs b/PluralKit.Bot/Utils/DiscordUtils.cs index 2457f26c..f023fd0f 100644 --- a/PluralKit.Bot/Utils/DiscordUtils.cs +++ b/PluralKit.Bot/Utils/DiscordUtils.cs @@ -226,5 +226,6 @@ public static class DiscordUtils Channel.ChannelType.GuildNews or Channel.ChannelType.GuildPublicThread or Channel.ChannelType.GuildPrivateThread or - Channel.ChannelType.GuildNewsThread; + Channel.ChannelType.GuildNewsThread or + Channel.ChannelType.GuildStageVoice; } \ No newline at end of file