Fix challenger args being backwards

This commit is contained in:
Dragon Fire
2020-03-23 12:26:02 -04:00
parent d21bd422c6
commit 8e6d2d2d8d
2 changed files with 7 additions and 7 deletions
+6 -6
View File
@@ -32,17 +32,17 @@ module.exports = class ChallengerCommand extends Command {
}
],
args: [
{
key: 'image',
prompt: 'What image would you like to edit?',
type: 'image',
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 256 })
},
{
key: 'silhouetted',
prompt: 'Should the image be silhouetted?',
type: 'boolean',
default: false
},
{
key: 'image',
prompt: 'What image would you like to edit?',
type: 'image',
default: msg => msg.author.displayAvatarURL({ format: 'png', size: 256 })
}
]
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "xiao",
"version": "112.13.1",
"version": "112.13.2",
"description": "Your personal server companion.",
"main": "Xiao.js",
"scripts": {