From b992e8736c16608468ecaef9673198b890634b6e Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Tue, 13 Dec 2022 16:50:42 +0100 Subject: [PATCH] build: :green_heart: Fixed missing variable Missing client in about command made build job fail --- package-lock.json | 4 ++-- src/commands/utils/modules/about/index.ts | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 8a7d37d..d19d8cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "xyter", - "version": "v1.1.0", + "version": "v1.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "xyter", - "version": "v1.1.0", + "version": "v1.1.1", "license": "GPL-3.0-only", "dependencies": { "@prisma/client": "^4.7.1", diff --git a/src/commands/utils/modules/about/index.ts b/src/commands/utils/modules/about/index.ts index ea8ba26..3003511 100644 --- a/src/commands/utils/modules/about/index.ts +++ b/src/commands/utils/modules/about/index.ts @@ -25,6 +25,8 @@ export default { if (!interaction.guild) throw new Error("You need to be in a guild"); + const { client } = interaction; + // await cooldown( // interaction.guild, // interaction.user,