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' }] }); } };