From 169acf8cad5d12b9be989d7747731a6f04556b4c Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 20 Jun 2020 09:26:58 -0400 Subject: [PATCH] Fix --- commands/util-public/credit.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/util-public/credit.js b/commands/util-public/credit.js index 0a370649..441d1c69 100644 --- a/commands/util-public/credit.js +++ b/commands/util-public/credit.js @@ -39,7 +39,7 @@ module.exports = class CreditCommand extends Command { .map(com => { const credit = com.credit.find(cred => cred.name.toLowerCase().includes(cmd)); if (!credit.reasonURL) return `${embedURL(credit.name, credit.url)} (${credit.reason})`; - return `${embedURL(credit.name, credit.url)} (${embedURL(credit.reason, credit.reasonURL)})`; + return `\`${com.name}\`: ${embedURL(credit.name, credit.url)} (${embedURL(credit.reason, credit.reasonURL)})`; }); if (!commands.length) return msg.say('Could not find any results.'); const embed = new MessageEmbed()