mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-21 20:54:58 +05:00
some clean up
This commit is contained in:
parent
e07da7f183
commit
b7565115c3
3 changed files with 4 additions and 8 deletions
|
@ -9,7 +9,7 @@ class AvatarContext extends BaseCommand {
|
|||
constructor() {
|
||||
super({
|
||||
command: new ContextMenuCommandBuilder()
|
||||
.setName("Avatar")
|
||||
.setName("Get Avatar")
|
||||
.setType(ApplicationCommandType.User)
|
||||
.setDMPermission(false),
|
||||
aliases: [],
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue