Timmy
Timmy
DIAdiscord.js - Imagine an app
Created by Timmy on 7/12/2023 in #djs-voice
Event not triggered in server
4 replies
DIAdiscord.js - Imagine an app
Created by Timmy on 8/5/2022 in #djs-voice
Error [VoiceNotStageChannel] You are only allowed to do this in stage channels.
why get this error? Error [VoiceNotStageChannel]: You are only allowed to do this in stage channels.
const connection = joinVoiceChannel({
channelId: voiceChannel.id,
guildId: interaction.guild.id,
adapterCreator: interaction.guild.voiceAdapterCreator,
});

if (voiceChannel.type === ChannelType.GuildStageVoice) {
await interaction.guild.members.me.voice.setSuppressed(false);
}
const connection = joinVoiceChannel({
channelId: voiceChannel.id,
guildId: interaction.guild.id,
adapterCreator: interaction.guild.voiceAdapterCreator,
});

if (voiceChannel.type === ChannelType.GuildStageVoice) {
await interaction.guild.members.me.voice.setSuppressed(false);
}
4 replies