From 4040fc5601eb53a023097c7ebce6c85706405767 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Mon, 1 Sep 2025 00:01:54 -0400 Subject: [PATCH] Fix --- commands/edit-meme/raw.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-meme/raw.js b/commands/edit-meme/raw.js index 5d2455c8..e0dc1d57 100644 --- a/commands/edit-meme/raw.js +++ b/commands/edit-meme/raw.js @@ -42,7 +42,7 @@ module.exports = class RawCommand extends Command { ctx.textAlign = 'center'; ctx.textBaseline = 'top'; ctx.font = this.client.fonts.get('wildwordsroman.ttf').toCanvasString(23); - ctx.fillText(text, 520, 143, 165); + ctx.fillText(text, 520, 147, 165); return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: 'raw.png' }] }); } };