summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2022-05-09 22:16:15 +0200
committerTor Andersson <tor@ccxvii.net>2023-02-18 12:31:29 +0100
commit0db7bfb141e9cc77615138cadea3952a5949ff6d (patch)
tree38836e4cd337de1fffdfd69630537eb19ed12e42
parente238ef47bd29d4684aa3e9c16e5606216ec74619 (diff)
downloadpax-pamir-0db7bfb141e9cc77615138cadea3952a5949ff6d.tar.gz
Check overthrow when rioting.
-rw-r--r--rules.js17
1 files changed, 16 insertions, 1 deletions
diff --git a/rules.js b/rules.js
index 434d3b6..b16295c 100644
--- a/rules.js
+++ b/rules.js
@@ -496,9 +496,24 @@ function pay_action_cost(count, offset) {
}
function remove_all_tribes_and_armies(where) {
- for (let i = 0; i < game.pieces.length; ++i)
+ logi(`Removed all tribes and armies in ${region_names[where]}.`);
+
+ for (let i = 0; i < 36; ++i)
if (game.pieces[i] === where)
game.pieces[i] = 0;
+
+ for (let p = 0; p < game.players.length; ++p) {
+ let x = player_cylinders(p);
+ let maybe_overthrow = false;
+ for (let i = x; i < x + 10; ++i) {
+ if (game.pieces[i] === where) {
+ game.pieces[i] = 0;
+ maybe_overthrow = true;
+ }
+ }
+ if (maybe_overthrow)
+ check_region_overthrow(p, where);
+ }
}
function player_with_most_spies(c) {