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
+2 -2
View File
@@ -58,8 +58,8 @@ module.exports = class BattleCommand extends Command {
if (!opponent.bot || (opponent.bot && userTurn)) {
await msg.say(stripIndents`
${user}, do you **fight**, **guard**, **special**, or **run**?
**${msg.author.username}**: ${userHP}HP
**${opponent.username}**: ${oppoHP}HP
**${msg.author.username}:** ${userHP}HP
**${opponent.username}:** ${oppoHP}HP
`);
const filter = res =>
res.author.id === user.id && ['fight', 'guard', 'special', 'run'].includes(res.content.toLowerCase());