aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlee <alee14498@gmail.com>2018-04-16 20:20:33 -0400
committerAlee <alee14498@gmail.com>2018-04-16 20:20:33 -0400
commitb23fd9d0b018abaa4d9adc29fea47add57809254 (patch)
tree596b1238777c0f39e759db058676299afdc91ceb
parent26095d071e95bc49ed94103593e0356992cdee64 (diff)
downloadAleeBot-b23fd9d0b018abaa4d9adc29fea47add57809254.tar.gz
AleeBot-b23fd9d0b018abaa4d9adc29fea47add57809254.tar.bz2
AleeBot-b23fd9d0b018abaa4d9adc29fea47add57809254.zip
Working on a improved git command
-rw-r--r--commands/git.js7
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 = {