From b81f9e8b73cb520ad5ae916c3e571ea55f4ca489 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Sat, 20 Aug 2022 23:07:02 -0400 Subject: fix ts composite shit, replace got with native fetch, update deps --- src/tasks/feature/updateStats.ts | 7 ------- 1 file changed, 7 deletions(-) (limited to 'src/tasks/feature/updateStats.ts') diff --git a/src/tasks/feature/updateStats.ts b/src/tasks/feature/updateStats.ts index 0d0e661..77b7c30 100644 --- a/src/tasks/feature/updateStats.ts +++ b/src/tasks/feature/updateStats.ts @@ -1,5 +1,4 @@ import { BushTask, Stat, Time } from '#lib'; -import { Client } from 'discord.js'; export default class UpdateStatsTask extends BushTask { public constructor() { @@ -17,10 +16,4 @@ export default class UpdateStatsTask extends BushTask { row.slashCommandsUsed = this.client.stats.slashCommandsUsed; await row.save(); } - - public static async init(client: Client): Promise<{ commandsUsed: bigint; slashCommandsUsed: bigint }> { - const temp = - (await Stat.findByPk(client.config.environment)) ?? (await Stat.create({ environment: client.config.environment })); - return { commandsUsed: temp.commandsUsed, slashCommandsUsed: temp.slashCommandsUsed }; - } } -- cgit