summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-23 14:15:12 +0200
committerMischa Untaga <99098079+MischaU8@users.noreply.github.com>2023-10-23 14:15:12 +0200
commit7a4932faee8e38dbadd72d973fbd490a00f4200d (patch)
treed955e32b398a5cce248e6f702e368dacc8fa2bd1
parent1d4b96c38ea64145b06dc6ef9bba6b763ecfb49e (diff)
downloadalgeria-7a4932faee8e38dbadd72d973fbd490a00f4200d.tar.gz
prevent multiple game_over events
-rw-r--r--rules.js2
1 files changed, 2 insertions, 0 deletions
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)