summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--rules.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/rules.js b/rules.js
index f2338ed..677ff2a 100644
--- a/rules.js
+++ b/rules.js
@@ -3306,6 +3306,7 @@ function goto_scoring_phase() {
if (is_persian_control(ATHENAI) && is_persian_control(SPARTA)) {
game.victory = "Persia won by controlling Athenai and Sparta!";
game.state = 'game_over';
+ game.active = "None";
game.result = PERSIA;
log_sep();
log(game.victory);
@@ -3314,6 +3315,7 @@ function goto_scoring_phase() {
if (is_greek_control(ABYDOS) && is_greek_control(EPHESOS)) {
game.victory = "Greece won by controlling Abydos and Ephesos!";
game.state = 'game_over';
+ game.active = "None";
game.result = GREECE;
log_sep();
log(game.victory);
@@ -3354,6 +3356,7 @@ function end_campaign() {
game.result = "Draw";
}
game.state = 'game_over';
+ game.active = "None";
log_sep();
log(game.victory);
} else {