From ed85d975931c6008011c16d1c3e2b05cbfa758a3 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Sat, 15 Feb 2025 10:35:44 +0100 Subject: Skip players with no cards in Pax Deorum. --- rules.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'rules.js') 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() { -- cgit v1.2.3