diff options
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -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() } |