TypeError: невозможно прочитать свойство hasPermission неопределенного значения - PullRequest
0 голосов
/ 17 июня 2020

Я создаю бота Discord, я изучил в основном v11 из Discord. js, Когда я создавал команду unban в Discord, а затем, когда я закончил, я запустил команду, и она выдала ошибку "TypeError : Невозможно прочесть свойство hasPermission of undefined », а вот мой код. это, кстати, обработчик команд

module.exports = {
    name : 'unban',
    execute(client, message, args){
       if(!message.member.hasPermission(["BAN_MEMBERS"])) return message.channel.send("You dont have permission to perform this command!")
    if(isNaN(args[0])) return message.channel.send("You need to provide an ID.")
    let bannedMember =  client.users.fetch(args[0])
        if(!bannedMember) return message.channel.send("Please provide a user id to unban someone!")

    let reason = args.slice(1).join(" ")
        if(!reason) reason = "No reason given!"

    if(!message.guild.me.hasPermission(["BAN_MEMBERS"])) return message.channel.send("I dont have permission to perform this command!")|
    message.delete()
    try {
        message.guild.members.unban(bannedMember, reason)
        message.channel.send(`**${bannedMember.tag}** has been unbanned from the guild!`)
    } catch(e) {
        console.log(e.message)
    }
}




No idea what the problem is.

1 Ответ

0 голосов
/ 18 июня 2020

Похоже, что message.guild.me.hasPermission и message.member.hasPermission - все допустимые методы. Вы уверены, что переменная message определена? Проверьте свой обработчик команд.

...