1
0
Fork 0

return nothing when nothing have been specified

akairo
Supositware 6 years ago
parent 557d5df71e
commit cb7e32957d

@ -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…
Cancel
Save