fix thing +_+++++

This commit is contained in:
reality 2015-02-04 16:38:56 +00:00
parent d97e4969f9
commit 164ec47337

View File

@ -45,6 +45,7 @@ var karma = function(dbot) {
this.listener = function(event) { this.listener = function(event) {
var match = event.message.match(/^(.+)(\+\+|\-\-)$/); var match = event.message.match(/^(.+)(\+\+|\-\-)$/);
if(match) { if(match) {
match[1] = match[1].replace(/(\+|\-)/g,'');
if(_.has(this.lastKarma, event.rUser.id) && this.lastKarma[event.rUser.id] + 5000 > Date.now()) { if(_.has(this.lastKarma, event.rUser.id) && this.lastKarma[event.rUser.id] + 5000 > Date.now()) {
return event.reply('Try again in a few seconds : - )'); return event.reply('Try again in a few seconds : - )');
} }