diff --git a/src/commands/index.ts b/src/commands/index.ts index 28b5533..a9be361 100644 --- a/src/commands/index.ts +++ b/src/commands/index.ts @@ -19,7 +19,7 @@ export default async function initLocalCommands() { description: "helps your idiot ass", execute: async (bot, interaction) => { await sendInteractionResponse(bot, interaction, { - content: helpMessage.join("\n"), + content: helpMessage.sort((a, b) => a.localeCompare(b)).join("\n"), private: true, }); },