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); } };