3
0
mirror of https://github.com/reality/dbot.git synced 2025-01-11 20:42:37 +01:00

fix syntax with previous change

This commit is contained in:
Luke Slater 2012-12-04 18:27:12 +00:00
parent e687cbb429
commit f8b1e3316f

View File

@ -131,10 +131,10 @@ var quotes = function(dbot) {
}
event.reply(dbot.t('removed_from', {'category': key, 'quote': quote}));
} else {
event.reply(dbot.t('q_not_exist_under', {'category': key, 'quote': quote)});
event.reply(dbot.t('q_not_exist_under', {'category': key, 'quote': quote}));
}
} else {
event.reply('locked_category', {'category': key}));
event.reply(dbot.t('locked_category', {'category': key}));
}
} else {
event.reply(dbot.t('category_not_found'));