From d84a47ca60b58de2cbc0e910d9483ad6981f63b4 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Mon, 25 Feb 2019 04:49:56 +0100 Subject: [PATCH] Updated the message --- commands/owner/dm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/owner/dm.js b/commands/owner/dm.js index 976b2f95..2f785ffe 100644 --- a/commands/owner/dm.js +++ b/commands/owner/dm.js @@ -31,11 +31,11 @@ class EvalCommand extends Command { let Attachment = (message.attachments).array(); if (Attachment[0]) { - this.client.users.get(user).send(`**Message from the dev:**\n${text}\n${Attachment[0].url}`); + this.client.users.get(user).send(`**Message from the dev:**\n${text}\n${Attachment[0].url}\n**If you wish to respond use the feedback command**`); message.channel.send(`DM sent to ${user.username}`); } else { - this.client.users.get(user.id).send(`**Message from the dev:**\n${text}`); + this.client.users.get(user.id).send(`**Message from the dev:**\n${text}\n**If you wish to respond use the feedback command**`); message.channel.send(`DM sent to ${user.username}`); }