diff --git a/bot/awesomescibo.js b/bot/awesomescibo.js index 3a83830..02131c7 100755 --- a/bot/awesomescibo.js +++ b/bot/awesomescibo.js @@ -447,7 +447,7 @@ async function changelog(message) { .setTimestamp(); commits.forEach(commit => { - changelogEmbed.addField(commit.abbrevHash, `> \`Hash:\`${commit.hash}\n> \`Subject:\`${commit.subject}\n> \`Author:\`${commit.authorName}\n> \`Date:\`${commit.authorDateRel}\n`); + changelogEmbed.addField(commit.abbrevHash, `> \`Hash:\`${commit.hash}\n> \`Subject:\`${commit.subject}\n> \`Author:\`${commit.authorName}\n> \`Date:\`${commit.authorDateRel}\n>[Link](https://github.com/ADawesomeguy/AwesomeSciBo/commit/${commit.hash})\n`); }); message.channel.send(changelogEmbed);