From 6e09759d7a3a7b924893d47a48f32a413a965652 Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 28 Sep 2017 01:32:57 +0000 Subject: [PATCH] This should do it --- commands/avatar-edit/i-have-the-power.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/avatar-edit/i-have-the-power.js b/commands/avatar-edit/i-have-the-power.js index 0daa4697..18573a9e 100644 --- a/commands/avatar-edit/i-have-the-power.js +++ b/commands/avatar-edit/i-have-the-power.js @@ -41,7 +41,7 @@ module.exports = class IHaveThePowerCommand extends Command { const avatar = await loadImage(body); ctx.drawImage(base, 0, 0); ctx.rotate(18.3 * (Math.PI / 180)); - ctx.drawImage(avatar, 332, -120, 175, 175); + ctx.drawImage(avatar, 332, -125, 175, 175); ctx.rotate(-18.3 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'i-have-the-power.png' }] }); } catch (err) {