From 01475ed113b3a20f8c6c746adfcca5a063cc3f48 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 10 Jun 2020 10:43:01 -0400 Subject: [PATCH] Fix --- commands/edit-meme/change-my-mind.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-meme/change-my-mind.js b/commands/edit-meme/change-my-mind.js index a6b8d730..4370a3b3 100644 --- a/commands/edit-meme/change-my-mind.js +++ b/commands/edit-meme/change-my-mind.js @@ -58,7 +58,7 @@ module.exports = class ChangeMyMindCommand extends Command { ctx.font = `${fontSize}px Noto`; } const lines = await wrapText(ctx, text, 206); - ctx.fillText(lines.join('\n'), 184, 243, 206); + ctx.fillText(lines.join('\n'), 184, 253, 206); ctx.rotate(6 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'change-my-mind.png' }] }); }