From 435b4a89c98e8dfe1b5e09202bcc49866a20a4dc Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 19 May 2019 19:31:52 +0000 Subject: [PATCH] FIX --- commands/avatar-edit/bob-ross.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/avatar-edit/bob-ross.js b/commands/avatar-edit/bob-ross.js index 44761ebd..579f5485 100644 --- a/commands/avatar-edit/bob-ross.js +++ b/commands/avatar-edit/bob-ross.js @@ -43,7 +43,7 @@ module.exports = class BobRossCommand extends Command { const ctx = canvas.getContext('2d'); ctx.fillStyle = 'white'; ctx.fillRect(0, 0, base.width, base.height); - ctx.drawImage(avatar, 15, 20, 440, 440); + ctx.drawImage(avatar, 10, 20, 440, 440); ctx.drawImage(base, 0, 0); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'bob-ross.png' }] }); } catch (err) {