How would I delete some messages from a channel with discord.js ? I get the number as an argument for the delete
command, but I just can't figure out how to actually delete it. I've looked at other questions, the code I saw started with channel.fetchMessages
which for some reason is not a function anymore. This is the code I currently have: channel.fetchMessages({ limit: num }).then(messages => channel.bulkDelete(messages));
Ah okay, I found it. It was channel.messages.fetch({ limit: num }).then(messages => channel.bulkDelete(messages));