Can send attachment
This commit is contained in:
parent
f8ed83c85d
commit
f917f09624
1 changed files with 10 additions and 2 deletions
|
@ -17,14 +17,22 @@ module.exports = class dmCommand extends Command {
|
||||||
key: 'text',
|
key: 'text',
|
||||||
prompt: 'Wich user would you like to dm?',
|
prompt: 'Wich user would you like to dm?',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
|
default: ''
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async run(message, { id, text }) {
|
async run(message, { id, text }) {
|
||||||
|
let Attachment = (message.attachments).array();
|
||||||
const user = this.client.users.get(id);
|
const user = this.client.users.get(id);
|
||||||
user.send(`**Message from the dev**\n${text}`)
|
if (Attachment[0]) {
|
||||||
message.say('DM sent')
|
user.send(`**Message from the dev**\n${text}\n${Attachment[0].url}`)
|
||||||
|
message.say('DM sent')
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
user.send(`**Message from the dev**\n${text}`)
|
||||||
|
message.say('DM sent')
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
Loading…
Reference in a new issue