This commit is contained in:
reality 2013-08-25 22:22:02 +00:00
parent 884158c27e
commit fdd3187c82

View File

@ -10,12 +10,13 @@ var report = function(dbot) {
this.internalAPI = {
'notify': function(server, users, message) {
console.log('called notify');
var count = 0;
async.eachSeries(users, function(nick, next) {
count++;
console.log(nick + ' ' + count);
setTimeout(function() {
dbot.say(server, nick, message);
count++
console.log(nick + ' ' + count);
//dbot.say(server, nick, message);
next();
}, 1000);
});