Browse Source
feat: remove WIP message in top command
pull/48/head
Abheek Dhawan
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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 }); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|