From 4e7a3eec91fdb5673edd5a0552521060f2acfd7a Mon Sep 17 00:00:00 2001 From: KillerBossOriginal Date: Thu, 4 Jul 2024 18:26:27 +0200 Subject: [PATCH] Build Fixes --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index b0a4047..0bd4e50 100644 --- a/src/index.ts +++ b/src/index.ts @@ -23,7 +23,7 @@ export default class TNC extends EventEmitter { if (options.customURL) this.URL = options.customURL; if (options.token) this.token = options.token; } - // this.credits = new CreditsManager(this.URL, this.token); + this.credits = new CreditsManager(this.URL, this.token); this.IA = new IAManager(this.URL, this.token); }