diff options
author | Tor Andersson <tor@ccxvii.net> | 2024-12-10 14:23:31 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2024-12-10 14:23:31 +0100 |
commit | 1e411905bf832ca8e59f3c1ade7f26952187d474 (patch) | |
tree | b3210cafcb12b2e9c81d16d71d24188c05993a4b /rules.js | |
parent | 1ec28003bc2fc7411726c098f2e47280a562766f (diff) | |
download | maria-1e411905bf832ca8e59f3c1ade7f26952187d474.tar.gz |
fix typo in game end check for introductiory scenario
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3442,7 +3442,7 @@ function goto_winter_turn() { game.score[pow].push(count_victory_markers_in_pool(pow)) if (is_intro()) { - if (game.turn === 10) { + if (game.turn === 12) { goto_game_over(player_from_power(P_AUSTRIA), "Austria survived 9 turns!") return } |