summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2025-02-15 10:35:44 +0100
committerTor Andersson <tor@ccxvii.net>2025-02-15 10:35:44 +0100
commited85d975931c6008011c16d1c3e2b05cbfa758a3 (patch)
treecf213903bd3f7af70695a09f378e87a9d09b0d21
parent922d5d99b90a70b99e16093b178689b170fd6ddd (diff)
downloadtime-of-crisis-ed85d975931c6008011c16d1c3e2b05cbfa758a3.tar.gz
Skip players with no cards in Pax Deorum.
-rw-r--r--rules.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index bdecbfe..0b033c0 100644
--- a/rules.js
+++ b/rules.js
@@ -1559,7 +1559,8 @@ function init_pax_deorum(concurrent) {
log(PLAYER_NAME[game.current] + " put discard in available.")
flip_discard_to_available()
}
- concurrent.push(game.current)
+ if (game.draw[game.current].length > 0)
+ concurrent.push(game.current)
}
function end_pax_deorum() {