From e8ef5d8082a44e1b7da882f8c769b350a08f4aeb Mon Sep 17 00:00:00 2001 From: ChomeNS Date: Mon, 13 Mar 2023 09:58:13 +0700 Subject: [PATCH] cowsay codeblock yup --- commands/cowsay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] }) } }