Swap think-of args

This commit is contained in:
Dragon Fire
2021-02-21 16:19:52 -05:00
parent 91a18c802b
commit 1989ab7cd8
+6 -6
View File
@@ -28,16 +28,16 @@ module.exports = class ThinkOfCommand extends Command {
} }
], ],
args: [ args: [
{
key: 'first',
label: 'first user',
prompt: 'Who is the user doing the thinking?',
type: 'user'
},
{ {
key: 'second', key: 'second',
label: 'second user', label: 'second user',
prompt: 'What user should they think about?', prompt: 'What user should they think about?',
type: 'user'
},
{
key: 'first',
label: 'first user',
prompt: 'Who is the user doing the thinking?',
type: 'user', type: 'user',
default: msg => msg.author default: msg => msg.author
} }