forked from Hri7566/mpp-server-dev2
Update Client.js
This commit is contained in:
parent
22110d0541
commit
6129f8f161
|
@ -18,7 +18,7 @@ class Client extends EventEmitter {
|
||||||
this.bindEventListeners();
|
this.bindEventListeners();
|
||||||
this.cursQuota = new RateLimit(16);
|
this.cursQuota = new RateLimit(16);
|
||||||
this.chatQuota = new RateLimitChain(4, 4000);
|
this.chatQuota = new RateLimitChain(4, 4000);
|
||||||
this.nameQuota = new RateLimitChain(30, 30 * 60000);
|
this.usersetQuota = new RateLimitChain(30, 30 * 60000);
|
||||||
this.crowned_chatQuota = new RateLimitChain(10, 2000);
|
this.crowned_chatQuota = new RateLimitChain(10, 2000);
|
||||||
require('./Message.js')(this);
|
require('./Message.js')(this);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue