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 } ] });