Change **: to :** when bolding lists

This commit is contained in:
Daniel Odendahl Jr
2018-09-07 20:47:28 +00:00
parent 2ce04ef2f0
commit 1ac0c405e4
32 changed files with 342 additions and 342 deletions
+4 -4
View File
@@ -45,11 +45,11 @@ module.exports = class HelpCommand extends Command {
}
return msg.say(stripIndents`
__Command **${command.name}**__${command.guildOnly ? ' (Usable only in servers)' : ''}
${command.description}${command.details ? `\n_${command.details}_` : ''}
${command.description}${command.details ? `\n${command.details}` : ''}
**Format**: ${msg.anyUsage(`${command.name} ${command.format || ''}`)}
**Aliases**: ${command.aliases.join(', ') || 'None'}
**Group**: ${command.group.name} (\`${command.groupID}:${command.memberName}\`)
**Format:** ${msg.anyUsage(`${command.name} ${command.format || ''}`)}
**Aliases:** ${command.aliases.join(', ') || 'None'}
**Group:** ${command.group.name} (\`${command.groupID}:${command.memberName}\`)
`);
}
};