diff options
| author | Alee <alee14498@gmail.com> | 2018-04-16 20:20:33 -0400 |
|---|---|---|
| committer | Alee <alee14498@gmail.com> | 2018-04-16 20:20:33 -0400 |
| commit | b23fd9d0b018abaa4d9adc29fea47add57809254 (patch) | |
| tree | 596b1238777c0f39e759db058676299afdc91ceb /commands/git.js | |
| parent | 26095d071e95bc49ed94103593e0356992cdee64 (diff) | |
| download | AleeBot-b23fd9d0b018abaa4d9adc29fea47add57809254.tar.gz AleeBot-b23fd9d0b018abaa4d9adc29fea47add57809254.tar.bz2 AleeBot-b23fd9d0b018abaa4d9adc29fea47add57809254.zip | |
Working on a improved git command
Diffstat (limited to 'commands/git.js')
| -rw-r--r-- | commands/git.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/commands/git.js b/commands/git.js index 4ff9c24..471ada2 100644 --- a/commands/git.js +++ b/commands/git.js @@ -18,7 +18,12 @@ *
* *************************************/
module.exports.run = async (client, message) => {
- message.author.send('I can see you want to contribute to this project.\nHere\'s the link: https://github.com/AleeCorp/AleeBot');
+ const embed = new Discord.RichEmbed()
+ .setTitle('GitHub Information')
+ .addField('**Github Repository:**', 'https://github.com/AleeCorp/AleeBot')
+ .addField('**Last Commit:**', '*Working Progress*')
+ .setColor('#1fd619')
+ message.channel.send({ embed });
};
exports.conf = {
|
