diff options
author | Tor Andersson <tor@ccxvii.net> | 2023-05-18 13:15:30 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-05-18 13:15:30 +0200 |
commit | 5370b8d9add8726b7625c0d06aef19ec42408685 (patch) | |
tree | 90e0987f05d39c38fded55d289f5ec981b5d1b26 | |
parent | 16c4b0c3f0ed8cd7af6f7fc1adebbc51428ad8f1 (diff) | |
download | andean-abyss-5370b8d9add8726b7625c0d06aef19ec42408685.tar.gz |
Check that there are available Sabotage markers in sabotage phase.
-rw-r--r-- | rules.js | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -6109,6 +6109,8 @@ function is_adjacent_to_city_farc_control(s) { } function can_sabotage_phase() { + if (count_terror_and_sabotage() >= 40) + return false for (let s = first_loc; s <= last_loc; ++s) if (can_sabotage_phase_space(s)) return true |