From 397a492b8f9cd2b8381b0adf537e9e2ddef2466e Mon Sep 17 00:00:00 2001 From: iainp5 Date: Sat, 22 Feb 2025 23:43:53 +0000 Subject: Fix Crowd not going to raise stakes --- rules.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'rules.js') diff --git a/rules.js b/rules.js index a9f07ea..f86c933 100644 --- a/rules.js +++ b/rules.js @@ -1078,12 +1078,14 @@ states.support_check_prep = { }, done() { push_undo() - check_for_crowd() + if (check_for_crowd()) + return game.state = 'resolve_opponent_event' }, pass() { push_undo() - check_for_crowd() + if (check_for_crowd()) + return end_round() } } @@ -3115,7 +3117,7 @@ function check_for_crowd() { log_h5('Raise the Stakes') log(`${game.active}:`) game.state = 'raise_stakes_1' - return + return true } reset_austria_hungary_border_reopened() } -- cgit v1.2.3