From cea375c4a965043d0f329bade92a52b097e747cd Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Mon, 19 Mar 2018 22:53:19 +0000 Subject: [PATCH] Fix --- commands/image-edit/illegal.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/image-edit/illegal.js b/commands/image-edit/illegal.js index 0928d477..7b647f8a 100644 --- a/commands/image-edit/illegal.js +++ b/commands/image-edit/illegal.js @@ -51,10 +51,10 @@ module.exports = class IllegalCommand extends Command { ctx.rotate(7 * (Math.PI / 180)); ctx.font = '45px Noto'; ctx.fillText(stripIndents` - ${shortenText(ctx, text, 215)} + ${shortenText(ctx, text, 200)} ${isOrAre} NOW ILLEGAL. - `, 760, 300); + `, 750, 290); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'illegal.png' }] }); } };