diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-06-09 14:47:45 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-16 19:12:55 +0100 |
commit | be9c35dc195e2b8865d58d52c716d2d6c4339aae (patch) | |
tree | 7fcedc7e27c106ef4ce3cd00124089edd67fcc19 | |
parent | ed28ea6fe6c87405fb8375aac426520decc83a68 (diff) | |
download | richard-iii-be9c35dc195e2b8865d58d52c716d2d6c4339aae.tar.gz |
More grammar tweaks.
-rw-r--r-- | rules.js | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -949,8 +949,8 @@ function check_instant_victory() { } function eliminate_block(who) { - log(block_name(who) + " eliminated."); - game.flash += " " + block_name(who) + " eliminated."; + log(block_name(who) + " was eliminated."); + game.flash += " " + block_name(who) + " was eliminated."; if (who === "Exeter/Y") { game.location[who] = null; ++game.killed_heirs[LANCASTER]; @@ -2102,13 +2102,13 @@ function pump_battle_round() { if (count_attackers() === 0 || count_defenders() === 0) { // Deploy reserves immediately if all blocks on one side are eliminated. if (count_attackers() === 0) { - log("Attacking main force eliminated."); + log("Attacking main force was eliminated."); bring_on_reserves(game.attacker[game.where], true); } else if (count_defenders() === 0) { - log("Defending main force eliminated."); + log("Defending main force was eliminated."); bring_on_reserves(ENEMY[game.attacker[game.where]], true); if (game.battle_round === 1) { - log("The attacker is now the defender."); + log("Battlefield control changed."); game.attacker[game.where] = ENEMY[game.attacker[game.where]]; } } |