diff --git a/commands/avatar-edit/look-at-this-photograph.js b/commands/avatar-edit/look-at-this-photograph.js index 6e27d4d6..1922ebba 100644 --- a/commands/avatar-edit/look-at-this-photograph.js +++ b/commands/avatar-edit/look-at-this-photograph.js @@ -41,7 +41,7 @@ module.exports = class LookAtThisPhotographCommand extends Command { const avatar = await loadImage(body); ctx.drawImage(base, 0, 0); ctx.rotate(-13.5 * (Math.PI / 180)); - ctx.drawImage(avatar, 280, 220, 175, 125); + ctx.drawImage(avatar, 280, 218, 175, 125); ctx.rotate(13.5 * (Math.PI / 180)); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'look-at-this-photograph.png' }] }); } catch (err) {