diff --git a/commands/General/help.js b/commands/General/help.js index 2050d4d4..127e97dc 100644 --- a/commands/General/help.js +++ b/commands/General/help.js @@ -83,7 +83,7 @@ class Help extends Command { }); categories.sort().forEach((cat) => { const tCommands = commands.filter((cmd) => cmd.help.category === cat); - embed.addField(`${emojis.categories[cat.toLowerCase()]} ${cat} - (${tCommands.size})`, `${tCommands.map((cmd) => `${cmd.help.name}`).join(", ")}`); + embed.addField(`${emojis.categories[cat.toLowerCase()]} ${cat} - (${tCommands.size})`, `${tCommands.map((cmd) => `\`${cmd.help.name}\``).join(", ")}`); }); if (message.guild) {