mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 21:12:06 +00:00
Clarified options and added autoRevive option
Useful when investigating potential option parameters
This commit is contained in:
parent
706682af55
commit
41efef750f
1 changed files with 2 additions and 0 deletions
|
|
@ -18,6 +18,8 @@ export default class Client extends EventEmitter {
|
|||
constructor(options) {
|
||||
super();
|
||||
this.options = options || {};
|
||||
this.options.compress = options.compress || true;
|
||||
this.options.autoRevive = options.autoRevive || false;
|
||||
this.internal = new InternalClient(this);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue