From cabcfa69cf0218845db91d29f8715b3f6beacd79 Mon Sep 17 00:00:00 2001 From: D3vision Date: Fri, 8 Dec 2023 00:08:46 +0100 Subject: [PATCH] Attempt at touching stats, it failed --- src/client/components/commands/developer/Stats.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/client/components/commands/developer/Stats.ts b/src/client/components/commands/developer/Stats.ts index 3906fef..4ea49cb 100644 --- a/src/client/components/commands/developer/Stats.ts +++ b/src/client/components/commands/developer/Stats.ts @@ -65,7 +65,10 @@ class StatsCommand extends SlashCommand }; const shardResults = await shard.broadcastEval(evalFunc).catch((error) => this.client.logger.error(error)); + // const shardResults: null | [] = null; + console.log('shart results'); const managerResult = await this.client.managerEval(mEvalFunc).catch((error) => this.client.logger.error(error)); + console.log('manager result'); if (!shardResults || !managerResult) throw new Error('Missing results for either shard or manager');