From a1c2428b52d9739c2c4653cce92dace29b453e14 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 18 Apr 2021 22:24:50 -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 ccaff05e..d33e72d5 100644 --- a/commands/edit-meme/raw.js +++ b/commands/edit-meme/raw.js @@ -44,7 +44,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, 145, 165); + ctx.fillText(text, 520, 143, 165); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'raw.png' }] }); } };