From d49d8e4ef60aa179a4992616e5fd93dba546b65e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 4 Apr 2021 20:10:59 -0400 Subject: [PATCH] Fix --- commands/search/strain.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/search/strain.js b/commands/search/strain.js index 3c4dda8a..64101122 100644 --- a/commands/search/strain.js +++ b/commands/search/strain.js @@ -43,7 +43,7 @@ module.exports = class StrainCommand extends Command { .setDescription(strain.shortDescriptionPlain || 'No description.') .setURL(`https://www.leafly.com/strains/${strain.slug}`) .setFooter(strain.subtitle) - .addField('❯ Effects', effects.map(effect => effect.name)) + .addField('❯ Effects', effects.map(effect => effect.name).join(', ')) .addField('❯ Phenotype', strain.phenotype, true) .addField('❯ Rating', `${formatNumber(strain.averageRating)} ⭐`, true); return msg.embed(embed);