Minor changes

This commit is contained in:
Daniel Odendahl Jr
2017-10-19 18:50:39 +00:00
parent c056ca47e3
commit 571f81ff0c
9 changed files with 10 additions and 88 deletions
+1 -1
View File
@@ -63,7 +63,7 @@ module.exports = class QuizCommand extends Command {
max: 1,
time: 15000
});
if (!msgs.size) return msg.say(`Time! It was ${correct}, sorry!`);
if (!msgs.size) return msg.say(`Sorry, time is up! It was ${correct}.`);
if (msgs.first().content.toLowerCase() !== correct) return msg.say(`Nope, sorry, it's ${correct}.`);
return msg.say('Nice job! 10/10! You deserve some cake!');
} catch (err) {