Skip to content

Commit

Permalink
Update help command description in help.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandward committed Apr 14, 2024
1 parent 03157ec commit 72f301f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions commands/utility/help.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const __dirname = import.meta.dirname;

export const data = new SlashCommandBuilder()
.setName('help')
.setDescription('Lists all commands and their descriptions.');
.setDescription('Commands available for Ex Astra guild management system.');

export const execute = async (interaction: CommandInteraction) => {
const member = await interaction.guild?.members.fetch(interaction.user.id);
Expand Down Expand Up @@ -47,7 +47,7 @@ export const execute = async (interaction: CommandInteraction) => {
embed.addFields({
name: `/${command.data.name}`,
value: command.data.description,
inline: false,
inline: true,
});
});

Expand Down

0 comments on commit 72f301f

Please sign in to comment.