and I've just updated to ver 14.6.0 of discord.js and non of my cmds are working why is that my code always worked before hand? example of my code here ->
if (message.content.startsWith('L!poke')) {
let targetMember = message.mentions.members.first();
if (!targetMember) return message.reply('you need to tag a user in order to poke them!!');
// message goes below!
const num = (Math.floor(Math.random()* 6)+1).toString();
message.channel.send({files: [`./poke/poke${num}.gif`]})
//message.channel.send({files:["./nom/"]})
message.channel.send(` ${targetMember.user},your you getting poked!!! -_-`);
//let embed = new Discord.RichEmbed()
//embed.setImage('https://cdn.discordapp.com/attachments/541152846540701706/653867448553963550/fm49srQ.gif')
//message.channel.send(embed);