From 59120274867c971c775b3f35b1399e00d23a75ef Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Thu, 28 Sep 2017 01:24:24 +0000 Subject: [PATCH] Beep --- 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 8b6f2140..c0f197d0 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, 322, 6, 371, 371); + ctx.drawImage(avatar, 322, 6, 175, 175); ctx.rotate(-18.3 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'i-have-the-power.png' }] }); } catch (err) {