Update Client.js

This commit is contained in:
wolfy01 2020-04-07 02:04:35 -04:00 committed by GitHub
parent 8859255532
commit 5d9fb96529
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class Client extends EventEmitter {
this.bindEventListeners();
this.cursQuota = new RateLimit(16);
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);
require('./Message.js')(this);
}