diff --git a/commands/avataredit/beautiful.js b/commands/avataredit/beautiful.js index 8746095e..90fd7782 100644 --- a/commands/avataredit/beautiful.js +++ b/commands/avataredit/beautiful.js @@ -30,7 +30,7 @@ module.exports = class BeautifulCommand extends Command { images.push(Jimp.read(avatarURL)); images.push(Jimp.read('https://i.imgur.com/71qLwPf.png')); const [avatar, grunkle] = await Promise.all(images); - avatar.resize(117, 145); + avatar.resize(117, 135); grunkle.composite(avatar, 341, 35); grunkle.composite(avatar, 342, 300); grunkle.getBuffer(Jimp.MIME_PNG, (err, buff) => { diff --git a/commands/avataredit/triggered.js b/commands/avataredit/triggered.js index d30a74a4..a14dc1d7 100644 --- a/commands/avataredit/triggered.js +++ b/commands/avataredit/triggered.js @@ -29,7 +29,7 @@ module.exports = class TriggeredCommand extends Command { images.push(Jimp.read('https://i.imgur.com/tF9yF62.png')); const [avatar, triggered] = await Promise.all(images); avatar.resize(320, 320); - triggered.blur(10); + avatar.blur(5); blank.composite(avatar, 0, 0); blank.composite(triggered, 0, 0); blank.getBuffer(Jimp.MIME_PNG, (err, buff) => {