From ffd9be4b9a20c770e8d5841dfce9a71fbe53c9c7 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Mon, 29 Jun 2020 13:23:06 -0400 Subject: [PATCH] Fix --- commands/edit-image/magik.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/edit-image/magik.js b/commands/edit-image/magik.js index b5fb247c..309f7bd4 100644 --- a/commands/edit-image/magik.js +++ b/commands/edit-image/magik.js @@ -29,7 +29,7 @@ module.exports = class MagikCommand extends Command { async run(msg, { image }) { try { const { body } = await request.get(image); - const magik = gm(body); + const magik = gm(body, 'magik.png'); magik.out('-liquid-rescale 75%x75%'); magik.implode(0.25); const attachment = await this.toBuffer(magik);