Added build error
parent
d52e698fde
commit
a7966d7adb
|
@ -28,7 +28,9 @@ export default class Client extends Eris.Client {
|
||||||
|
|
||||||
public server: Server;
|
public server: Server;
|
||||||
|
|
||||||
public updating: Boolean;
|
public updating: boolean;
|
||||||
|
|
||||||
|
public buildError: boolean
|
||||||
|
|
||||||
constructor() {
|
constructor() {
|
||||||
super(config.token, { getAllUsers: true, restMode: true, defaultImageFormat: 'png' });
|
super(config.token, { getAllUsers: true, restMode: true, defaultImageFormat: 'png' });
|
||||||
|
@ -47,6 +49,7 @@ export default class Client extends Eris.Client {
|
||||||
displayFilename: true,
|
displayFilename: true,
|
||||||
});
|
});
|
||||||
this.updating = false;
|
this.updating = false;
|
||||||
|
this.buildError = false;
|
||||||
this.events();
|
this.events();
|
||||||
this.loadFunctions();
|
this.loadFunctions();
|
||||||
this.init();
|
this.init();
|
||||||
|
|
Loading…
Reference in New Issue