вы можете либо ответить на сообщение, либо отправить сообщение в том же канале, что и сообщение (канал DM)
if(message.channel instanceof Discord.DMChannel && !message.author.bot) {
return message.reply('You can not message me through DMs')
}
или
if(message.channel instanceof Discord.DMChannel && !message.author.bot) {
return message.channel.send('You can not message me through DMs')
}