Reputation: 11
I've created a discord bot using node.js and I'm having troubles with users spamming messages to my chat bot's DM. Any help would be great!
Upvotes: 1
Views: 450
Reputation: 5174
At the top of your message
event put:
// If the message is sent in dm
if (message.channel.type === 'dm') return;
Upvotes: 1