diff --git a/commands/owner/dm.js b/commands/owner/dm.js
index 7ecb93e5..289e1b82 100644
--- a/commands/owner/dm.js
+++ b/commands/owner/dm.js
@@ -28,15 +28,15 @@ class EvalCommand extends Command {
     async exec(message, args) {
         let user = args.user;
         let message = args.message;
-        
+
         let Attachment = (message.attachments).array();
         if (Attachment[0]) {
             user.send(`**Message from the dev:**\n${message}\n${Attachment[0].url}`)
-            message.say(`DM sent to ${user.username}`)
+            message.channel.send(`DM sent to ${user.username}`)
         }
         else {
             user.send(`**Message from the dev:**\n${message}`)
-            message.say(`DM sent to ${user.username}`)
+            message.channel.send(`DM sent to ${user.username}`)
         }
 
     }
diff --git a/commands/owner/reboot.js b/commands/owner/reboot.js
index 787d2523..46add0f2 100644
--- a/commands/owner/reboot.js
+++ b/commands/owner/reboot.js
@@ -16,7 +16,7 @@ class RebootCommand extends Command {
     }
 
     async exec(message) {
-        await message.say('k bye thx\nhttps://i.redd.it/lw8hrvr0l4f11.jpg');
+        await message.channel.send('k bye thx\nhttps://i.redd.it/lw8hrvr0l4f11.jpg');
         process.exit();
 
     }