From 7a4932faee8e38dbadd72d973fbd490a00f4200d Mon Sep 17 00:00:00 2001 From: Mischa Untaga <99098079+MischaU8@users.noreply.github.com> Date: Mon, 23 Oct 2023 14:15:12 +0200 Subject: prevent multiple game_over events --- rules.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules.js b/rules.js index 620d02e..4c80664 100644 --- a/rules.js +++ b/rules.js @@ -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) -- cgit v1.2.3