From 4c0dca8b64fe2cc14b42629d6c5ebde65bea5909 Mon Sep 17 00:00:00 2001 From: lilyissillyyy Date: Thu, 18 Sep 2025 15:41:06 -0400 Subject: [PATCH] Fix --- commands/edit-image-text/undertale.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image-text/undertale.js b/commands/edit-image-text/undertale.js index f8da081b..d0b34bcc 100644 --- a/commands/edit-image-text/undertale.js +++ b/commands/edit-image-text/undertale.js @@ -114,7 +114,7 @@ module.exports = class UndertaleCommand extends Command { const text = wrapText(ctx, quote, 385); const lines = text.length > 3 ? 3 : text.length; for (let i = 0; i < lines; i++) { - ctx.fillText(text[i], 174, 30 + (30 * i) + (23 * i) + (space * i)); + ctx.fillText(text[i], 174, 30 + (30 * i) + (20 * i) + (space * i)); } return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: `undertale-${character}.png` }] }); }