From 16f6d75ab986c61c50c8c522dbe85503d60cccd0 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 28 Mar 2020 13:30:23 -0400 Subject: [PATCH] Fix --- commands/meme-gen/bart-chalkboard.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/meme-gen/bart-chalkboard.js b/commands/meme-gen/bart-chalkboard.js index adad3f7d..ca9ecb2b 100644 --- a/commands/meme-gen/bart-chalkboard.js +++ b/commands/meme-gen/bart-chalkboard.js @@ -49,7 +49,8 @@ module.exports = class LisaPresentationCommand extends Command { ctx.drawImage(base, 0, 0); ctx.textAlign = 'top'; ctx.font = '19px Akbar'; - ctx.fillText(shortenText(ctx, `${text}\n`.repeat(12).trim(), 500), 30, 27); + ctx.fillStyle = 'white'; + ctx.fillText(shortenText(ctx, `${text.toUpperCase()}\n`.repeat(12).trim(), 500), 35, 27); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'bart-chalkboard.png' }] }); } };