diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-23 14:15:12 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-23 14:15:12 +0200 |
commit | 7a4932faee8e38dbadd72d973fbd490a00f4200d (patch) | |
tree | d955e32b398a5cce248e6f702e368dacc8fa2bd1 | |
parent | 1d4b96c38ea64145b06dc6ef9bba6b763ecfb49e (diff) | |
download | algeria-7a4932faee8e38dbadd72d973fbd490a00f4200d.tar.gz |
prevent multiple game_over events
-rw-r--r-- | rules.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -1100,6 +1100,7 @@ function victory_scale() { } function check_victory() { + if (game.state === "game_over") return if (game.gov_psl <= 0) { let scale = victory_scale() goto_game_over(FLN_NAME, `FLN wins: ${scale} victory`) @@ -1113,6 +1114,7 @@ function check_victory() { } function check_shorter_victory() { + if (game.state === "game_over") return // If one player would "win" with at least a Substantial Victory (that is, his PSL is 26 or more points ahead of the other player's) two checks running, // the game ends at that point and he wins the game with the level of victory he enjoyed at that moment. let psl_diff = Math.abs(game.gov_psl - game.fln_psl) |