From 97f0d24ab13e5f291ba9c55e86b793a823fc5693 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Sat, 6 Sep 2025 21:57:23 -0400 Subject: [PATCH] Make it look a bit more like he wrote it --- commands/edit-meme/bart-chalkboard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-meme/bart-chalkboard.js b/commands/edit-meme/bart-chalkboard.js index 10d1f9e4..96f9cc8a 100644 --- a/commands/edit-meme/bart-chalkboard.js +++ b/commands/edit-meme/bart-chalkboard.js @@ -56,7 +56,7 @@ module.exports = class LisaPresentationCommand extends Command { const arr = []; for (let i = 0; i < 12; i++) arr.push(shortened); fillTextWithBreaks(ctx, arr.join('\n'), 30, 27); - ctx.drawImage(bart, Math.min(522, 30 + len), 142, 103, 212); + ctx.drawImage(bart, Math.min(522, 30 + len - 5), 142, 103, 212); return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'bart-chalkboard.png' }] }); } };