summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/rules.js b/rules.js
index 19494ee..ee36620 100644
--- a/rules.js
+++ b/rules.js
@@ -3222,12 +3222,16 @@ function goto_scoring_phase() {
game.victory = "Persia wins by controlling Athenai and Sparta!";
game.state = 'game_over';
game.result = PERSIA;
+ log("");
+ log(game.victory);
return;
}
if (is_greek_control(ABYDOS) && is_greek_control(EPHESOS)) {
game.victory = "Greece wins by controlling Abydos and Ephesos!";
game.state = 'game_over';
game.result = GREECE;
+ log("");
+ log(game.victory);
return;
}
let greek_vp = 0;