Browse Source

feat: remove WIP message in top command

pull/48/head
Abheek Dhawan 2 years ago
committed by GitHub
parent
commit
761371fccb
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/commands/top.ts

4
src/commands/top.ts

@ -6,7 +6,7 @@ import userScore from '../models/userScore';
export const data = new SlashCommandBuilder() export const data = new SlashCommandBuilder()
.setName('top') .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) { export async function execute(interaction: CommandInteraction) {
await interaction.deferReply(); await interaction.deferReply();
@ -60,4 +60,4 @@ export async function execute(interaction: CommandInteraction) {
interaction.followUp({ embeds: embeds }); interaction.followUp({ embeds: embeds });
}); });
} }

Loading…
Cancel
Save