missing argument fix?

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

11
bot.js
View File

@@ -600,11 +600,14 @@ client.on('message', message => {
if (site_response) { if (site_response) {
message.channel.send(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 { } else {
message.channel.send("You're a bad boi and a banned author, you can't summon til you learn to behave."); message.channel.send("You're a bad boi and a banned author, you can't summon til you learn to behave.");