Don't error if regex syntax is invalid for ~ default.

This commit is contained in:
Luke Slater 2012-05-23 18:50:21 +01:00
parent 55dec12324
commit aa72af3867

View File

@ -69,7 +69,9 @@ var command = function(dbot) {
dbot.commands[commandName](event); dbot.commands[commandName](event);
dbot.save(); dbot.save();
} else { } else {
event.reply(dbot.t('syntax_error')); if(commandName !== '~') {
event.reply(dbot.t('syntax_error'));
}
} }
} }
} }