replaced message.say to message.channel.send

merge-requests/1/head
Loic Bersier 5 years ago
parent 52819edef5
commit 5dd4df1397

@ -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}`)
}
}

@ -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();
}

Loading…
Cancel
Save