From 8d6e9646989c8742717c72c15993b895191c2c74 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 21 Aug 2017 21:03:41 +0000 Subject: [PATCH] Fix --- commands/search/github.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/search/github.js b/commands/search/github.js index 9c6d8c2f..80cc5fb0 100644 --- a/commands/search/github.js +++ b/commands/search/github.js @@ -33,8 +33,8 @@ module.exports = class GitHubCommand extends Command { const { body } = await snekfetch .get(`https://${GITHUB_LOGIN}@api.github.com/repos/${author}/${repository}`); const embed = new MessageEmbed() - .setColor(0xCB0000) - .setAuthor('GitHub', 'https://i.imgur.com/BCODHXd.png') + .setColor(0xFFFFFF) + .setAuthor('GitHub', 'https://i.imgur.com/bRROLzk.png') .setTitle(body.full_name) .setURL(body.html_url) .setDescription(body.description || 'No Description.')