1
0
Fork 0

replaced message.say to message.channel.send

akairo
Loic Bersier 6 years ago
parent 52819edef5
commit 5dd4df1397

@ -28,15 +28,15 @@ class EvalCommand extends Command {
async exec(message, args) { async exec(message, args) {
let user = args.user; let user = args.user;
let message = args.message; let message = args.message;
let Attachment = (message.attachments).array(); let Attachment = (message.attachments).array();
if (Attachment[0]) { if (Attachment[0]) {
user.send(`**Message from the dev:**\n${message}\n${Attachment[0].url}`) 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 { else {
user.send(`**Message from the dev:**\n${message}`) 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) { 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(); process.exit();
} }

Loading…
Cancel
Save