3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-25 04:02:39 +01:00

double derp

This commit is contained in:
reality 2013-10-20 18:53:08 +00:00
parent f6b8ff9030
commit b3a558d81c

View File

@ -74,13 +74,11 @@ var sstats = function(dbot) {
};
this.listener = function(event) {
if(event.message.charAt(0) != '~') return;
event.cStats.lines++;
event.uStats.lines++;
event.message = event.message.replace(/[\.,-\/#!$%\^&\*;:{}=\-_`~()]/g, "");
var words = event.message.split(' '),
var message = event.message.replace(/[\.,-\/#!$%\^&\*;:{}=\-_`~()]/g, "");
var words = message.split(' '),
wCount = words.length,
capitals = 0,
curses = 0;
@ -115,6 +113,7 @@ var sstats = function(dbot) {
}
// Look for tracked words.
if(event.message.charAt(0) != '~') return;
var wMap = {}; // Why reduce isn't working idk
_.each(words, function(word) {
word = word.toLowerCase();
@ -133,6 +132,7 @@ 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() {});