Added build error

merge-requests/1/merge
Bsian 2019-11-30 23:14:50 +00:00
parent d52e698fde
commit a7966d7adb
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 4 additions and 1 deletions

View File

@ -28,7 +28,9 @@ export default class Client extends Eris.Client {
public server: Server;
public updating: Boolean;
public updating: boolean;
public buildError: boolean
constructor() {
super(config.token, { getAllUsers: true, restMode: true, defaultImageFormat: 'png' });
@ -47,6 +49,7 @@ export default class Client extends Eris.Client {
displayFilename: true,
});
this.updating = false;
this.buildError = false;
this.events();
this.loadFunctions();
this.init();