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