From f06122ecace04af159d1986d5ab33482da66a0c2 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 20 Jun 2020 09:27:30 -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 441d1c69..b298ec5a 100644 --- a/commands/util-public/credit.js +++ b/commands/util-public/credit.js @@ -45,7 +45,7 @@ module.exports = class CreditCommand extends Command { const embed = new MessageEmbed() .setTitle(cmd) .setColor(0x7289DA) - .setDescription(trimArray(commands, 15).join(', ')); + .setDescription(trimArray(commands, 15).join('\n')); return msg.embed(embed); } };