diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-05-09 22:16:15 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2023-02-18 12:31:29 +0100 |
commit | 0db7bfb141e9cc77615138cadea3952a5949ff6d (patch) | |
tree | 38836e4cd337de1fffdfd69630537eb19ed12e42 | |
parent | e238ef47bd29d4684aa3e9c16e5606216ec74619 (diff) | |
download | pax-pamir-0db7bfb141e9cc77615138cadea3952a5949ff6d.tar.gz |
Check overthrow when rioting.
-rw-r--r-- | rules.js | 17 |
1 files changed, 16 insertions, 1 deletions
@@ -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) { |