diff --git a/commands/cowsay.js b/commands/cowsay.js index b60870d..2a653e2 100644 --- a/commands/cowsay.js +++ b/commands/cowsay.js @@ -37,7 +37,7 @@ module.exports = { const Embed = new EmbedBuilder() .setColor(config.discord.embedsColors.normal) .setTitle('Cowsay') - .setDescription(cowsay.say(args.slice(1).join(' '), { cow: cows[args[0]] })) + .setDescription(`\`\`\`\n${cowsay.say(args.slice(1).join(' '), { cow: cows[args[0]] })}\n\`\`\``) channeldc.send({ embeds: [Embed] }) } }