From c2383cb9e0a8ac37c013dfef6aad8bd184a28f77 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 27 Dec 2020 10:06:44 -0500 Subject: [PATCH] Fix --- commands/edit-meme/new-password.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/edit-meme/new-password.js b/commands/edit-meme/new-password.js index c250d155..494add24 100644 --- a/commands/edit-meme/new-password.js +++ b/commands/edit-meme/new-password.js @@ -50,8 +50,8 @@ module.exports = class NewPasswordCommand extends Command { const ctx = canvas.getContext('2d'); ctx.drawImage(base, 0, 0); ctx.font = '60px Noto'; - ctx.fillText(shortenText(ctx, weak, 780), 70, 196); - ctx.fillText(shortenText(ctx, strong, 780), 70, 672); + ctx.fillText(shortenText(ctx, weak, 780), 70, 191); + ctx.fillText(shortenText(ctx, strong, 780), 70, 667); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'new-password.png' }] }); } };