3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
This commit is contained in:
reality 2013-08-25 22:16:12 +00:00
parent 223a000c91
commit 884158c27e

View File

@ -14,8 +14,8 @@ var report = function(dbot) {
async.eachSeries(users, function(nick, next) { async.eachSeries(users, function(nick, next) {
count++; count++;
console.log(nick + ' ' + count); console.log(nick + ' ' + count);
dbot.say(server, nick, message);
setTimeout(function() { setTimeout(function() {
dbot.say(server, nick, message);
next(); next();
}, 1000); }, 1000);
}); });