missing argument fix?
This commit is contained in:
13
bot.js
13
bot.js
@@ -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.");
|
||||
|
Reference in New Issue
Block a user