fix(BaseClient): Remove selfbot ability (#6429)

This commit is contained in:
HyRo
2021-08-16 09:30:35 +02:00
committed by GitHub
parent d289d5ccb7
commit 9a833b1e0e
3 changed files with 4 additions and 5 deletions

View File

@@ -24,7 +24,7 @@ class BaseClient extends EventEmitter {
* @type {RESTManager}
* @private
*/
this.rest = new RESTManager(this, options._tokenType);
this.rest = new RESTManager(this);
}
/**