Expanded files

This commit is contained in:
hydrabolt
2015-10-29 16:01:41 +00:00
parent 8b64769b49
commit b6955e771e
16 changed files with 4044 additions and 116 deletions

View File

@@ -35,6 +35,7 @@ class Client extends EventEmitter {
super();
this.options = options;
this.options.catchup options.catchup;
this.options.compress = options.compress;
if (this.options.compress) {
@@ -1240,7 +1241,7 @@ class Client extends EventEmitter {
setInterval(function () {
self.keepAlive.apply(self);
}, data.heartbeat_interval);
self.checkCatchUp();
break;
case "MESSAGE_CREATE":
self.debug("received message");
@@ -2074,6 +2075,10 @@ class Client extends EventEmitter {
}
}
checkCatchUp(){
}
}
module.exports = Client;