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() {
super({
command: new ContextMenuCommandBuilder()
.setName("Avatar")
.setName("Get Avatar")
.setType(ApplicationCommandType.User)
.setDMPermission(false),
aliases: [],

View file

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

View file

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