summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2021-09-20 01:18:58 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:42:59 +0100
commit01d0ccfbb2dc9dafbf20589096468ace73da86fb (patch)
tree771d775372b362f8e3a7c1d5e47572602a4739d1
parent7c574f145adc4973fbc3d27595c71b021e881b5d (diff)
download300-earth-and-water-01d0ccfbb2dc9dafbf20589096468ace73da86fb.tar.gz
300: Fix various typos.
-rw-r--r--rules.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/rules.js b/rules.js
index 807a0a6..246830d 100644
--- a/rules.js
+++ b/rules.js
@@ -1229,10 +1229,10 @@ states.greek_naval_movement = {
port: function ([to, fleets, armies]) {
push_undo();
if (armies > 0)
- log("Persia moves " + fleets + " fleets with " + armies + " armies:\n"
+ log("Greece moves " + fleets + " fleets with " + armies + " armies:\n"
+ game.from + " to " + to);
else
- log("Persia moves " + fleets + " fleets:\n"
+ log("Greece moves " + fleets + " fleets:\n"
+ game.from + " to " + to);
move_greek_fleet(game.from, to, fleets);
if (game.greek.event !== THEMISTOCLES) {
@@ -3121,7 +3121,7 @@ function end_campaign() {
game.victory = $("Greece wins with " + (-game.vp) + " points.");
game.result = GREECE;
} else if (game.vp > 0) {
- game.victory = $("Persia wins with " + game.vp + "points.");
+ game.victory = $("Persia wins with " + game.vp + " points.");
game.result = PERSIA;
} else {
game.victory = "Nobody wins.";