Fixed typo...

That's kinda embarrasing
This commit is contained in:
Daniel Løvbrøtte Olsen 2016-08-22 22:00:30 +02:00 committed by GitHub
parent 86e94ec3d0
commit 84087570c3

View File

@ -39,6 +39,6 @@ bot.dialog('/', new builder.IntentDialog()
.matches(helper.regex("memes"), function(s) {cmd.memes(s)})
.matches(helper.regex("debug"), function(s) {cmd.debug(s)})
.onDefault(function(session) {
console2.log(session);
console.log(session);
session.send("I didn't understand. Say 'help' to get a list of commands!");
}));