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