Should be perfect

This commit is contained in:
lilyissillyyy
2025-09-18 15:41:39 -04:00
parent 4c0dca8b64
commit 3e94885e4e
+1 -1
View File
@@ -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) + (20 * i) + (space * i));
ctx.fillText(text[i], 174, 30 + (30 * i) + (17 * i) + (space * i));
}
return msg.say({ files: [{ attachment: canvas.toBuffer('image/png'), name: `undertale-${character}.png` }] });
}