From 20a0b9378bc7a3393b53d9e0a092ec709c663d96 Mon Sep 17 00:00:00 2001 From: Isaac Date: Fri, 14 Feb 2025 14:13:01 +0000 Subject: [PATCH] fix: `/claim` and `/release` commands (from #580) --- src/commands/slash/claim.js | 1 - src/commands/slash/release.js | 1 - 2 files changed, 2 deletions(-) diff --git a/src/commands/slash/claim.js b/src/commands/slash/claim.js index 9573250..68b48f3 100644 --- a/src/commands/slash/claim.js +++ b/src/commands/slash/claim.js @@ -20,7 +20,6 @@ module.exports = class ClaimSlashCommand extends SlashCommand { /** @type {import("client")} */ const client = this.client; - await interaction.deferReply({ ephemeral: false }); await client.tickets.claim(interaction); } }; diff --git a/src/commands/slash/release.js b/src/commands/slash/release.js index 497c526..9be8cca 100644 --- a/src/commands/slash/release.js +++ b/src/commands/slash/release.js @@ -20,7 +20,6 @@ module.exports = class ReleaseSlashCommand extends SlashCommand { /** @type {import("client")} */ const client = this.client; - await interaction.deferReply({ ephemeral: false }); await client.tickets.release(interaction); } };