Format number in uses

This commit is contained in:
Dragon Fire
2020-11-29 10:54:36 -05:00
parent f9f82d4064
commit e2f55c048c
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ module.exports = class PrefixCommand extends Command {
run(msg) {
const prefix = msg.guild ? msg.guild.commandPrefix : this.client.commandPrefix;
return msg.reply(stripIndents`
${prefix ? `The command prefix is \`\`${prefix}\`\`.` : 'There is no command prefix.'}
${prefix ? `The command prefix is \`${prefix}\`.` : 'There is no command prefix.'}
To run a command, use ${msg.anyUsage('<command>')}.
`);
}