From 64d335374e66d284e8b40c47824251bc2ed8d62b Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Thu, 4 Jun 2020 09:53:08 -0400 Subject: [PATCH] Fix --- commands/edit-meme/edd-facts-book.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-meme/edd-facts-book.js b/commands/edit-meme/edd-facts-book.js index d80f0e77..9c47d2f4 100644 --- a/commands/edit-meme/edd-facts-book.js +++ b/commands/edit-meme/edd-facts-book.js @@ -58,7 +58,7 @@ module.exports = class EddFactsBookCommand extends Command { ctx.font = `${fontSize}px Noto`; } const lines = await wrapText(ctx, fact, 183); - ctx.fillText(lines.join('\n'), 119, 326, 183); + ctx.fillText(lines.join('\n'), 119, 316, 183); ctx.rotate(-15 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'edd-facts-book.png' }] }); }