This commit is contained in:
reality 2013-10-20 18:51:14 +00:00
parent f217289e9d
commit f6b8ff9030

View File

@ -74,6 +74,8 @@ var sstats = function(dbot) {
};
this.listener = function(event) {
if(event.message.charAt(0) != '~') return;
event.cStats.lines++;
event.uStats.lines++;
@ -113,7 +115,6 @@ var sstats = function(dbot) {
}
// Look for tracked words.
if(event.message.charAt(0) != '~') {
var wMap = {}; // Why reduce isn't working idk
_.each(words, function(word) {
word = word.toLowerCase();
@ -132,7 +133,6 @@ var sstats = function(dbot) {
}
}.bind(this));
}, this);
}
this.db.save('channel_stats', event.cStats.id, event.cStats, function() {});
this.db.save('user_stats', event.uStats.id, event.uStats, function() {});