fix: radio bug

This commit is contained in:
CorwinDev 2023-03-02 11:02:02 +01:00
parent db2cd3309c
commit ee4f95e827

View file

@ -30,7 +30,7 @@ module.exports = (client) => {
setTimeout(() => { setTimeout(() => {
if (channel.type == Discord.ChannelType.GuildStageVoice) { if (channel.type == Discord.ChannelType.GuildStageVoice) {
channel.guild.me.voice.setSuppressed(false).catch(() => { }); channel.guild.members.me.voice.setSuppressed(false);
} }
}, 500) }, 500)