fix: /claim and /release commands (from #580)

This commit is contained in:
Isaac 2025-02-14 14:13:01 +00:00
parent 1f24561ac0
commit 20a0b9378b
No known key found for this signature in database
GPG Key ID: 0DE40AE37BBA5C33
2 changed files with 0 additions and 2 deletions

View File

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

View File

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