summaryrefslogtreecommitdiff
path: root/rules.js
diff options
context:
space:
mode:
Diffstat (limited to 'rules.js')
-rw-r--r--rules.js8
1 files changed, 5 insertions, 3 deletions
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()
}