diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-02-15 10:35:44 +0100 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-02-15 10:35:44 +0100 |
commit | ed85d975931c6008011c16d1c3e2b05cbfa758a3 (patch) | |
tree | cf213903bd3f7af70695a09f378e87a9d09b0d21 | |
parent | 922d5d99b90a70b99e16093b178689b170fd6ddd (diff) | |
download | time-of-crisis-ed85d975931c6008011c16d1c3e2b05cbfa758a3.tar.gz |
Skip players with no cards in Pax Deorum.
-rw-r--r-- | rules.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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() { |