From 9163fe8aa921c1b1b9d76f95002806f2b7fede15 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 19 May 2019 19:29:12 +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 3bb41623..7efdcb49 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, 30, 19, 430, 430); + ctx.drawImage(avatar, 25, 19, 430, 430); ctx.drawImage(base, 0, 0); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'bob-ross.png' }] }); } catch (err) {