missing argument fix?

This commit is contained in:
Dalton
2018-12-08 01:44:17 -08:00
parent abef45524b
commit 11f0ed80b0

13
bot.js
View File

@@ -186,7 +186,7 @@ function imgurRequest(subreddit, page_max) {
// Abstracted Reddit Json media grab.
function handleRedditJson(data) {
let json = data.json();
if(json.data) {
if (json.data) {
for (let i = 0; i < json.data.children.length; i++) {
let rand = getRandomInt(0, json.data.children.length - 1);
@@ -600,11 +600,14 @@ client.on('message', message => {
if (site_response) {
message.channel.send(site_response);
}
// Missing Argument
} else {
message.channel.send('wut do i summon?');
}
} else if (messageSplit.length > 3) {
let imgur_terms = message.content.substring(9);
message.channel.send('summoning ' + imgur_terms);
} else {
// Missing Argument
message.channel.send('wut do i summon?');
}
} else {
message.channel.send("You're a bad boi and a banned author, you can't summon til you learn to behave.");