From 1989ab7cd8db402cf0dedf2a5c4dfdaee6d590db Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sun, 21 Feb 2021 16:19:52 -0500 Subject: [PATCH] Swap think-of args --- commands/random-seed/think-of.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/commands/random-seed/think-of.js b/commands/random-seed/think-of.js index 59564911..74a6110b 100644 --- a/commands/random-seed/think-of.js +++ b/commands/random-seed/think-of.js @@ -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 }