Flip arguments in needs-more-jpeg

This commit is contained in:
Dragon Fire
2020-06-06 00:16:19 -04:00
parent 8785c41718
commit a75fb109a7
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -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 })
}
]
});