Add defaults to roleplay commands that need them

This commit is contained in:
Dragon Fire
2020-05-20 11:39:07 -04:00
parent 8c6404cf99
commit 78c30b8754
3 changed files with 6 additions and 3 deletions
+2 -1
View File
@@ -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
}
]
});
+2 -1
View File
@@ -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
}
]
});
+2 -1
View File
@@ -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
}
]
});