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: [
{
key: 'first',
label: 'first user',
prompt: 'Who is the user doing the thinking?',
type: 'user'
},
{
key: 'second',
label: 'second user',
prompt: 'What user should they think about?',
type: 'user'
},
{
key: 'first',
label: 'first user',
prompt: 'Who is the user doing the thinking?',
type: 'user',
default: msg => msg.author
}