diff options
author | Tor Andersson <tor@ccxvii.net> | 2021-09-20 01:23:44 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:42:59 +0100 |
commit | 554ec74557c929e01ba1feb764548f7c120f936a (patch) | |
tree | 2f5b05d9bcc9bb92163073c7de8fd1d9a3f1940c | |
parent | 01d0ccfbb2dc9dafbf20589096468ace73da86fb (diff) | |
download | 300-earth-and-water-554ec74557c929e01ba1feb764548f7c120f936a.tar.gz |
300: Fix punctuation in messages.
-rw-r--r-- | rules.js | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1193,10 +1193,10 @@ states.persian_naval_movement = { push_undo(); if (armies > 0) log("Persia moves " + fleets + " fleets with " + armies + " armies:\n" - + game.from + " to " + to); + + game.from + " to " + to + "."); else log("Persia moves " + fleets + " fleets:\n" - + game.from + " to " + to); + + game.from + " to " + to + "."); move_persian_fleet(game.from, to, fleets); move_persian_army(game.from, to, armies); game.transport = armies; @@ -1230,10 +1230,10 @@ states.greek_naval_movement = { push_undo(); if (armies > 0) log("Greece moves " + fleets + " fleets with " + armies + " armies:\n" - + game.from + " to " + to); + + game.from + " to " + to + "."); else log("Greece moves " + fleets + " fleets:\n" - + game.from + " to " + to); + + game.from + " to " + to + "."); move_greek_fleet(game.from, to, fleets); if (game.greek.event !== THEMISTOCLES) { move_greek_army(game.from, to, armies); |