From f5bec6968f1e59bacf8af5fddef1ef24b4779236 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Tue, 2 Oct 2018 19:51:42 +0200
Subject: [PATCH] corrected "message.send" to "message.say"

---
 commands/owner/dm.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/commands/owner/dm.js b/commands/owner/dm.js
index faa04139..80860e12 100644
--- a/commands/owner/dm.js
+++ b/commands/owner/dm.js
@@ -25,6 +25,6 @@ module.exports = class dmCommand extends Command {
     async run(message, { id, text }) {
         const user = this.client.users.get(id);
         user.send(`**Message from the dev**\n${text}`)
-        message.send('DM sent')
+        message.say('DM sent')
     }
 };
\ No newline at end of file