summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-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)