javascript - undefined member.voiceChannel - Stack Overflow

I am having trouble with my discord bot not knowing what channel a user is in. If I check member.voiceC

I am having trouble with my discord bot not knowing what channel a user is in. If I check member.voiceChannel it always returns undefined. Even if I am inside a voice channel.

Code:

let voiceChannel;

voiceChannel = msg.member.voiceChannel;

if (!voiceChannel) {   
    return msg.reply('Please join a voice channel before using this mand.');
}

console.log(voiceChannel); prints undefined regardless of me being in a Voice Channel or not.

I am having trouble with my discord bot not knowing what channel a user is in. If I check member.voiceChannel it always returns undefined. Even if I am inside a voice channel.

Code:

let voiceChannel;

voiceChannel = msg.member.voiceChannel;

if (!voiceChannel) {   
    return msg.reply('Please join a voice channel before using this mand.');
}

console.log(voiceChannel); prints undefined regardless of me being in a Voice Channel or not.

Share Improve this question edited Aug 21, 2018 at 11:40 Gilles Heinesch 2,9901 gold badge24 silver badges45 bronze badges asked Aug 19, 2018 at 21:50 SyberSyber 4512 gold badges6 silver badges19 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 5

Happened to me just now while using Discord.js v12.

Apparently the variable changed names between versions and now instead of:

message.member.voiceChannel

It is:

message.member.voice.channel

Changing the variable like this worked for me

This code probably will be your solution. Remember to modify it to make it suitable with your bot's codes, Don't just copy & paste it.

// Only try to join the sender's voice channel if they are in one themselves
if (message.member.voiceChannel) {
  message.member.voiceChannel.join()
    .then(connection => { // Connection is an instance of VoiceConnection
      message.reply('I have successfully connected to the channel!');
    })
    .catch(console.log);
} else {
  message.reply('You need to join a voice channel first!');
}

solution:

let voiceChannel = msg.member.voice.channel;
voiceChannel.join();
if (!voiceChannel) {   
    return msg.reply('Please join a voice channel before using this mand.');
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697423a4491990.html

相关推荐

  • javascript - undefined member.voiceChannel - Stack Overflow

    I am having trouble with my discord bot not knowing what channel a user is in. If I check member.voiceC

    23小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信