This commit is contained in:
Dragon Fire
2020-03-28 13:31:10 -04:00
parent 16f6d75ab9
commit 435fd6fe4f
+1 -1
View File
@@ -50,7 +50,7 @@ module.exports = class LisaPresentationCommand extends Command {
ctx.textAlign = 'top';
ctx.font = '19px Akbar';
ctx.fillStyle = 'white';
ctx.fillText(shortenText(ctx, `${text.toUpperCase()}\n`.repeat(12).trim(), 500), 35, 27);
ctx.fillText(shortenText(ctx, `${text.toUpperCase()}\n`.repeat(12).trim(), 500), 30, 35);
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'bart-chalkboard.png' }] });
}
};