Я закодировал команду перезагрузки для моего бота разногласий. он запускает бота, бот всегда выдает мне сообщение об ошибке, что он не может перезагрузить команду. кто-нибудь видит что-то не так с кодом?
module.exports.run = async (Client, msg, args) => {
let commandName = args[0].toLowerCase()
if(msg.author.id != "393165866285662208" ) return msg.channel.send('Youre not drizzy, idiot')
if(!args[0]) return msg.channel.send('Provide a command to reload')
try {
delete require.cache[require.resolve(`./${commandname}.js`)]
Client.commands.delete(commandName)
const pull = require(`./${commandName}.js`)
Client.commands.set(commandName, pull)
} catch(e) {
return msg.channel.send(`Could not reload: \`${args[0].toUpperCase()}\``)
}
msg.channel.send(`\`${commandName}\` was reloaded!`)
}