I want to add a media only channel to my discord.js bot. I want people to be able to send only links and images. I've made the image part of the channel but when users send links my bot delete them. For example prnt.sc/xxxxx
.
Here is my code :
bot.on("message", msg => {
if (msg.channel.id !== "815002698499096616") {
return;
}
// Checking if the author is a bot.
if (msg.author.bot) {
return false;
}
// Deleting the message if there are 0 attachments in the message.
if (msg.attachments.size == 0) {
msg.delete();
}
});