diff --git a/src/commands/top.ts b/src/commands/top.ts index 28a8127..1ddd36a 100644 --- a/src/commands/top.ts +++ b/src/commands/top.ts @@ -6,7 +6,7 @@ import userScore from '../models/userScore'; export const data = new SlashCommandBuilder() .setName('top') - .setDescription('Lists top ten scores across servers (server specific leaderboard WIP)'); + .setDescription('Lists top ten scores across servers and in the current server'); export async function execute(interaction: CommandInteraction) { await interaction.deferReply(); @@ -60,4 +60,4 @@ export async function execute(interaction: CommandInteraction) { interaction.followUp({ embeds: embeds }); }); -} \ No newline at end of file +}