From b23fd9d0b018abaa4d9adc29fea47add57809254 Mon Sep 17 00:00:00 2001 From: Alee Date: Mon, 16 Apr 2018 20:20:33 -0400 Subject: Working on a improved git command --- commands/git.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'commands/git.js') 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 = { -- cgit v1.2.3