Update undertale generator text location

This commit is contained in:
lilyissillyyy
2025-09-18 15:36:54 -04:00
parent 5f925590f8
commit e25dca08d6
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -115,7 +115,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, 22 + (22 * i) + (22 * i) + (space * i));
ctx.fillText(text[i], 174, 27 + (27 * i) + (27 * i) + (space * i));
}
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: `undertale-${character}.png` }] });
}