diff --git a/src/plugins/vcNarrator.tsx b/src/plugins/vcNarrator.tsx index 62a6b43c..fe3efdf6 100644 --- a/src/plugins/vcNarrator.tsx +++ b/src/plugins/vcNarrator.tsx @@ -156,6 +156,8 @@ export default definePlugin({ const myChanId = SelectedChannelStore.getVoiceChannelId(); const myId = UserStore.getCurrentUser().id; + if (ChannelStore.getChannel(myChanId!)?.type === 13 /* Stage Channel */) return; + for (const state of voiceStates) { const { userId, channelId, oldChannelId } = state; const isMe = userId === myId;