Quiz Command

This commit is contained in:
Daniel Odendahl Jr
2017-03-23 20:51:39 +00:00
parent 22bf4e8d90
commit 1a6de84223
3 changed files with 51 additions and 2 deletions
+1 -1
View File
@@ -55,7 +55,7 @@ module.exports = class MathGameCommand extends commando.Command {
}).then((collected) => {
return message.channel.send(`Good Job! You won!`);
}).catch(() => {
return message.channel.send(`Aw... Too bad, try again next time! The correct answer was: ${solved}`);
return message.channel.send(`Aw... Too bad, try again next time!\nThe Correct Answer was: ${solved}`);
});
});
}