diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 { |