From 1cb1043abce64e00b7a2b5b8e88f8cae188e59f4 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 27 Dec 2020 10:05:42 -0500 Subject: [PATCH] Fix --- commands/edit-meme/new-password.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/edit-meme/new-password.js b/commands/edit-meme/new-password.js index 03393a68..c250d155 100644 --- a/commands/edit-meme/new-password.js +++ b/commands/edit-meme/new-password.js @@ -49,9 +49,9 @@ module.exports = class NewPasswordCommand extends Command { const canvas = createCanvas(base.width, base.height); const ctx = canvas.getContext('2d'); ctx.drawImage(base, 0, 0); - ctx.font = '50px Noto'; - ctx.fillText(shortenText(ctx, weak, 780), 70, 206); - ctx.fillText(shortenText(ctx, strong, 780), 70, 682); + ctx.font = '60px Noto'; + ctx.fillText(shortenText(ctx, weak, 780), 70, 196); + ctx.fillText(shortenText(ctx, strong, 780), 70, 672); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'new-password.png' }] }); } };