From e1c0cbcdd3a66734a1b1a7b34ec527df1b1062e5 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Wed, 13 Feb 2019 02:17:18 +0100 Subject: [PATCH] Fixed --- commands/images/paint.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/images/paint.js b/commands/images/paint.js index a2cf0173..7588ec1e 100644 --- a/commands/images/paint.js +++ b/commands/images/paint.js @@ -30,12 +30,12 @@ class paintCommand extends Command { message.channel.send('Processing ') .then(loadingmsg => loadingmsg.delete(1000)); - const canvas = createCanvas(528, 559); + const canvas = createCanvas(488, 400); const ctx = canvas.getContext('2d'); const background = await loadImage(image).catch(() => { return message.channel.send('An error as occured, please try again'); }); - ctx.drawImage(background, 50, 50, 480, 450); + ctx.drawImage(background, 65, 30, 405, 280); const { body: buffer } = await superagent.get('https://cdn.discordapp.com/attachments/488483518742134794/542633779601342476/260293545019212.png'); const bg = await loadImage(buffer); ctx.drawImage(bg, 0, 0, canvas.width, canvas.height);