This commit is contained in:
Dragon Fire
2020-06-10 10:43:01 -04:00
parent 34d3dd13cd
commit 01475ed113
+1 -1
View File
@@ -58,7 +58,7 @@ module.exports = class ChangeMyMindCommand extends Command {
ctx.font = `${fontSize}px Noto`;
}
const lines = await wrapText(ctx, text, 206);
ctx.fillText(lines.join('\n'), 184, 243, 206);
ctx.fillText(lines.join('\n'), 184, 253, 206);
ctx.rotate(6 * (Math.PI / 180));
return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'change-my-mind.png' }] });
}