summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-09-20 01:23:44 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:42:59 +0100
commit554ec74557c929e01ba1feb764548f7c120f936a (patch)
tree2f5b05d9bcc9bb92163073c7de8fd1d9a3f1940c
parent01d0ccfbb2dc9dafbf20589096468ace73da86fb (diff)
download300-earth-and-water-554ec74557c929e01ba1feb764548f7c120f936a.tar.gz
300: Fix punctuation in messages.
-rw-r--r--rules.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/rules.js b/rules.js
index 246830d..52a8497 100644
--- a/rules.js
+++ b/rules.js
@@ -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);