From d0fcc137b69b7de0182d911c1e9318f1adb6f4ac Mon Sep 17 00:00:00 2001 From: Daniel Odendahl Jr Date: Sun, 28 May 2017 15:17:25 +0000 Subject: [PATCH] More Grammar Fixes --- commands/games/battle.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/commands/games/battle.js b/commands/games/battle.js index 742a48a2..b043d483 100644 --- a/commands/games/battle.js +++ b/commands/games/battle.js @@ -44,7 +44,7 @@ module.exports = class BattleCommand extends Command { while (userHP > 0 && oppoHP > 0) { const username = userTurn ? msg.author.username : opponent.username; await msg.say(stripIndents` - **${username}**, do you **fight**, **guard**, **special**, **cure** or **run**? + **${username}**, do you **fight**, **guard**, **special**, **cure**, or **run**? **${msg.author.username}**: ${userHP}HP **${opponent.username}**: ${oppoHP}HP `); @@ -85,14 +85,14 @@ module.exports = class BattleCommand extends Command { } if (guard) guard = false; } else { - await msg.say('Miss!'); + await msg.say(`**${username}**'s attack missed!`); if (guard) guard = false; if (userTurn) userTurn = false; else userTurn = true; } } else if (choice === 'cure') { if (userTurn ? userCure : oppoCure) { - await msg.say(`**${username}** regains **250HP**!`); + await msg.say(`**${username}** regains **250** health!`); if (userTurn) { userHP = userHP + 250; userCure = false;