From a75fb109a71c961e041f159923da4c9fca4ed05e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 6 Jun 2020 00:16:19 -0400 Subject: [PATCH] Flip arguments in needs-more-jpeg --- commands/edit-image/needs-more-jpeg.js | 12 ++++++------ package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/commands/edit-image/needs-more-jpeg.js b/commands/edit-image/needs-more-jpeg.js index 019faef9..c7b739d9 100644 --- a/commands/edit-image/needs-more-jpeg.js +++ b/commands/edit-image/needs-more-jpeg.js @@ -16,12 +16,6 @@ module.exports = class NeedsMoreJpegCommand extends Command { }, clientPermissions: ['ATTACH_FILES'], args: [ - { - key: 'image', - prompt: 'What image would you like to edit?', - type: 'image', - default: msg => msg.author.displayAvatarURL({ format: 'png', size: 512 }) - }, { key: 'quality', prompt: 'What quality should the resulting image use?', @@ -29,6 +23,12 @@ module.exports = class NeedsMoreJpegCommand extends Command { default: 0.5, min: 0.01, max: 10 + }, + { + key: 'image', + prompt: 'What image would you like to edit?', + type: 'image', + default: msg => msg.author.displayAvatarURL({ format: 'png', size: 512 }) } ] }); diff --git a/package.json b/package.json index a20003db..a3600b04 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "xiao", - "version": "116.1.4", + "version": "116.1.5", "description": "Your personal server companion.", "main": "Xiao.js", "scripts": {