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) {
|
async exec(message, args) {
|
||||||
|
if (!args.text)
|
||||||
|
return;
|
||||||
let clap = args.text.replace(/ /g, ' 👏 ');
|
let clap = args.text.replace(/ /g, ' 👏 ');
|
||||||
message.delete();
|
message.delete();
|
||||||
message.channel.send(`${clap} 👏`);
|
message.channel.send(`${clap} 👏`);
|
||||||
|
|
|
@ -12,9 +12,6 @@ class RedditCommand extends Command {
|
||||||
{
|
{
|
||||||
id: 'sub',
|
id: 'sub',
|
||||||
type: 'string',
|
type: 'string',
|
||||||
prompt: {
|
|
||||||
retry: 'That\'s not a valid subreddit! try again.'
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
description: {
|
description: {
|
||||||
|
@ -28,6 +25,8 @@ class RedditCommand extends Command {
|
||||||
async exec(message, args) {
|
async exec(message, args) {
|
||||||
let sub = args.sub;
|
let sub = args.sub;
|
||||||
let i, a;
|
let i, a;
|
||||||
|
if (!sub)
|
||||||
|
return;
|
||||||
|
|
||||||
fetch('https://www.reddit.com/r/' + sub + '.json?limit=100').then((response) => {
|
fetch('https://www.reddit.com/r/' + sub + '.json?limit=100').then((response) => {
|
||||||
return response.json();
|
return response.json();
|
||||||
|
|
Loading…
Reference in a new issue