From 0db7bfb141e9cc77615138cadea3952a5949ff6d Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Mon, 9 May 2022 22:16:15 +0200 Subject: Check overthrow when rioting. --- rules.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) 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) { -- cgit v1.2.3