Skip to content

Commit

Permalink
[Fix] fixed help with slash commands returning empty embed message
Browse files Browse the repository at this point in the history
  • Loading branch information
naseif committed Oct 10, 2021
1 parent 6237c19 commit e5ad9f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions commands/Misc/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ module.exports = {
option
.setName("category")
.setDescription("show help by category")
.addChoice("Admin", "admin")
.addChoice("Anime", "anime")
.addChoice("Fun", "fun")
.addChoice("Music", "music")
.addChoice("Misc", "misc")
.addChoice("Admin", "Admin")
.addChoice("Anime", "Anime")
.addChoice("Fun", "Fun")
.addChoice("Music", "Music")
.addChoice("Misc", "Misc")
),
async execute(interaction, client) {
await interaction.deferReply();
Expand Down

0 comments on commit e5ad9f0

Please sign in to comment.