From 554ec74557c929e01ba1feb764548f7c120f936a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 20 Sep 2021 01:23:44 +0200 Subject: 300: Fix punctuation in messages. --- rules.js | 8 ++++---- 1 file 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); -- cgit v1.2.3