forked from Supositware/Haha-Yes
return nothing when nothing have been specified
This commit is contained in:
parent
557d5df71e
commit
cb7e32957d
2 changed files with 4 additions and 3 deletions
|
@ -21,6 +21,8 @@ class ClapCommand extends Command {
|
|||
}
|
||||
|
||||
async exec(message, args) {
|
||||
if (!args.text)
|
||||
return;
|
||||
let clap = args.text.replace(/ /g, ' 👏 ');
|
||||
message.delete();
|
||||
message.channel.send(`${clap} 👏`);
|
||||
|
|
|
@ -12,9 +12,6 @@ class RedditCommand extends Command {
|
|||
{
|
||||
id: 'sub',
|
||||
type: 'string',
|
||||
prompt: {
|
||||
retry: 'That\'s not a valid subreddit! try again.'
|
||||
},
|
||||
}
|
||||
],
|
||||
description: {
|
||||
|
@ -28,6 +25,8 @@ class RedditCommand extends Command {
|
|||
async exec(message, args) {
|
||||
let sub = args.sub;
|
||||
let i, a;
|
||||
if (!sub)
|
||||
return;
|
||||
|
||||
fetch('https://www.reddit.com/r/' + sub + '.json?limit=100').then((response) => {
|
||||
return response.json();
|
||||
|
|
Loading…
Reference in a new issue