From 5d9fb96529cc734f4c6d71e99187978611f3560c Mon Sep 17 00:00:00 2001 From: wolfy01 <45273698+wolfy01@users.noreply.github.com> Date: Tue, 7 Apr 2020 02:04:35 -0400 Subject: [PATCH] Update Client.js --- src/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.js b/src/Client.js index 4751df9..4081a1c 100644 --- a/src/Client.js +++ b/src/Client.js @@ -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); }