Skip to content

Commit 657fe73

Browse files
committed
Update help command
1 parent 04e53f4 commit 657fe73

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/commands/meta/help.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export default class Help extends Command {
8282

8383
return sendMessage(source, `${command.commandName} - ${command.help}
8484
85-
Usage: \`${config.prefix}${command.usage}\`${command.aliases ? `
85+
Usage: \`/${command.usage}\`${command.aliases ? `
8686
Aliases: ${command.aliases.map(k => `\`${k}\``).join(", ")}` : "None"}`)
8787
}
8888

@@ -121,12 +121,12 @@ ${Object.entries(categorized)
121121
!(category.toLowerCase() == "hidden" ||
122122
(!config.admins.includes(getUserID(source)) && category.toLowerCase() == "admin"))
123123
).map(([category, items]) => `**${category}**
124-
${items.sort((a, b) => a.localeCompare(b)).map(cmd => `${config.prefix}${cmd}`).join(", ")}`)
124+
${items.sort((a, b) => a.localeCompare(b)).map(cmd => `/${cmd}`).join(", ")}`)
125125
.join("\n")}
126126
127127
*Some commands are also available on the website <${client.data.baseURL}>*
128-
*Make sure to check out \`${config.prefix}help <command name>\` for more information about a specific command, you might find some useful shortcuts/tips (like command aliases/how most search commands support fuzzy search).*
129-
*Any problems/suggestions? Check out \`${config.prefix}about\`.*${missingPerms.length > 0 ? `
128+
*Make sure to check out \`/help <command name>\` for more information about a specific command, you might find some useful shortcuts/tips (like command aliases/how most search commands support fuzzy search).*
129+
*Any problems/suggestions? Check out \`/about\`.*${missingPerms.length > 0 ? `
130130
131131
**NOTE**: This bot is missing some permissions required for optimal usage, please add ${missingPerms.join(", ")}`: ""}`)
132132
}

0 commit comments

Comments
 (0)