mirror of
https://github.com/danbulant/discord.js
synced 2026-06-07 08:41:29 +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) {
|
constructor(options) {
|
||||||
super();
|
super();
|
||||||
this.options = options || {};
|
this.options = options || {};
|
||||||
|
this.options.compress = options.compress || true;
|
||||||
|
this.options.autoRevive = options.autoRevive || false;
|
||||||
this.internal = new InternalClient(this);
|
this.internal = new InternalClient(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue