forked from Supositware/Haha-Yes
replaced message.say to message.channel.send
This commit is contained in:
parent
52819edef5
commit
5dd4df1397
2 changed files with 4 additions and 4 deletions
|
@ -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…
Reference in a new issue