From 5de0e8ad7d45b2b7e7f255c473d575909ac0eb35 Mon Sep 17 00:00:00 2001 From: reality Date: Sun, 25 Aug 2013 22:37:31 +0000 Subject: [PATCH] apparently it was --- modules/report/report.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/modules/report/report.js b/modules/report/report.js index b593a3f..e946ee8 100644 --- a/modules/report/report.js +++ b/modules/report/report.js @@ -10,13 +10,9 @@ var report = function(dbot) { this.internalAPI = { 'notify': function(server, users, message) { - console.log('called notify'); - var count = 0; async.eachSeries(users, function(nick, next) { setTimeout(function() { - count++ - //console.log(nick + ' ' + count); - //dbot.say(server, nick, message); + dbot.say(server, nick, message); next(); }, 1000); });