some clean up

This commit is contained in:
Jonny_Bro (Nikita) 2023-11-19 22:43:17 +05:00
parent e07da7f183
commit b7565115c3
3 changed files with 4 additions and 8 deletions

View file

@ -9,7 +9,7 @@ class AvatarContext extends BaseCommand {
constructor() { constructor() {
super({ super({
command: new ContextMenuCommandBuilder() command: new ContextMenuCommandBuilder()
.setName("Avatar") .setName("Get Avatar")
.setType(ApplicationCommandType.User) .setType(ApplicationCommandType.User)
.setDMPermission(false), .setDMPermission(false),
aliases: [], aliases: [],

View file

@ -9,7 +9,7 @@ class WarnContext extends BaseCommand {
constructor() { constructor() {
super({ super({
command: new ContextMenuCommandBuilder() command: new ContextMenuCommandBuilder()
.setName("Warn") .setName("Give Warn")
.setType(ApplicationCommandType.User) .setType(ApplicationCommandType.User)
.setDMPermission(false) .setDMPermission(false)
.setDefaultMemberPermissions(PermissionsBitField.Flags.ManageMessages), .setDefaultMemberPermissions(PermissionsBitField.Flags.ManageMessages),

View file

@ -99,9 +99,7 @@ class CreateTicketEmbed extends BaseCommand {
const row = new ActionRowBuilder().addComponents(closeButton, transcriptButton); const row = new ActionRowBuilder().addComponents(closeButton, transcriptButton);
await channel.send({ embeds: [embed], components: [row] }); await channel.send({ embeds: [embed], components: [row] });
} } else if (button.customId === "close_ticket") {
if (button.customId === "close_ticket") {
const embed = new EmbedBuilder() const embed = new EmbedBuilder()
.setTitle(interaction.translate("tickets/closeticket:CLOSING_TITLE")) .setTitle(interaction.translate("tickets/closeticket:CLOSING_TITLE"))
.setDescription(interaction.translate("tickets/closeticket:CLOSING_DESC")) .setDescription(interaction.translate("tickets/closeticket:CLOSING_DESC"))
@ -174,9 +172,7 @@ class CreateTicketEmbed extends BaseCommand {
await interaction.channel.setName(`${interaction.channel.name}-closed`); await interaction.channel.setName(`${interaction.channel.name}-closed`);
} }
}); });
} } else if (button.customId === "transcript_ticket") {
if (button.customId === "transcript_ticket") {
await interaction.deferUpdate(); await interaction.deferUpdate();
const reversedMessages = (await interaction.channel.messages.fetch()).filter(m => !m.author.bot); const reversedMessages = (await interaction.channel.messages.fetch()).filter(m => !m.author.bot);