From 761371fccbd2d0d7d5bfa6488d023fd933221ee8 Mon Sep 17 00:00:00 2001 From: Abheek Dhawan <67982792+abheekda1@users.noreply.github.com> Date: Sat, 14 Jan 2023 12:29:16 -0600 Subject: [PATCH] feat: remove WIP message in top command --- src/commands/top.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}