From 667000161801fb278f4918d81ff1afb007c7f9ad Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 6 Jul 2020 10:25:39 -0400 Subject: [PATCH] Fix lint --- commands/edit-image/wanted.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/wanted.js b/commands/edit-image/wanted.js index 17cffecf..e10f8c55 100644 --- a/commands/edit-image/wanted.js +++ b/commands/edit-image/wanted.js @@ -44,7 +44,7 @@ module.exports = class WantedCommand extends Command { const canvas = createCanvas(base.width, base.height); const ctx = canvas.getContext('2d'); ctx.drawImage(base, 0, 0); - const { x, y, width, height } = centerImagePart(data, 430, 430, 150, 360); + const { x, y, width, height } = centerImagePart(data, 430, 430, 150, 360); ctx.drawImage(data, x, y, width, height); sepia(ctx, x, y, width, height); return msg.say({ files: [{ attachment: canvas.toBuffer(), name: 'wanted.png' }] });