3
0
mirror of https://github.com/reality/dbot.git synced 2024-12-24 11:42:36 +01:00

change offline time getuserhose

This commit is contained in:
reality 2013-08-25 22:56:19 +00:00
parent 5de0e8ad7d
commit d3d25164c3

View File

@ -20,7 +20,7 @@ var nickserv = function(dbot) {
dbot.instance.connections[server].send('USERHOST ' + nick); dbot.instance.connections[server].send('USERHOST ' + nick);
setTimeout(function() { setTimeout(function() {
if(_.has(this.userStack[server], nick)) callback(false); if(_.has(this.userStack[server], nick)) callback(false);
}.bind(this), 8000); }.bind(this), 4000);
} }
}; };