From 78c30b87541a1dea317ae4e516eb46ab713508fd Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 20 May 2020 11:39:07 -0400 Subject: [PATCH] Add defaults to roleplay commands that need them --- commands/roleplay/blush.js | 3 ++- commands/roleplay/wave.js | 3 ++- commands/roleplay/wink.js | 3 ++- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/commands/roleplay/blush.js b/commands/roleplay/blush.js index 784c340b..10c58d03 100644 --- a/commands/roleplay/blush.js +++ b/commands/roleplay/blush.js @@ -14,7 +14,8 @@ module.exports = class BlushCommand extends ImgurAlbumCommand { { key: 'user', prompt: 'What user do you want to roleplay with?', - type: 'user' + type: 'user', + default: msg => msg.author } ] }); diff --git a/commands/roleplay/wave.js b/commands/roleplay/wave.js index 94d50e4e..7e3eedf4 100644 --- a/commands/roleplay/wave.js +++ b/commands/roleplay/wave.js @@ -14,7 +14,8 @@ module.exports = class WaveCommand extends ImgurAlbumCommand { { key: 'user', prompt: 'What user do you want to roleplay with?', - type: 'user' + type: 'user', + default: msg => msg.author } ] }); diff --git a/commands/roleplay/wink.js b/commands/roleplay/wink.js index b87bdc91..08d40b21 100644 --- a/commands/roleplay/wink.js +++ b/commands/roleplay/wink.js @@ -14,7 +14,8 @@ module.exports = class WinkCommand extends ImgurAlbumCommand { { key: 'user', prompt: 'What user do you want to roleplay with?', - type: 'user' + type: 'user', + default: msg => msg.author } ] });