From 538971835db430496060be2578d04022476bc05a Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Fri, 24 Mar 2023 18:18:26 +0100 Subject: Don't move cubes that have already swept. --- rules.js | 36 ++++++++++++++++++++++-------------- 1 file changed, 22 insertions(+), 14 deletions(-) diff --git a/rules.js b/rules.js index a26016a..4cc16b3 100644 --- a/rules.js +++ b/rules.js @@ -2658,17 +2658,21 @@ function can_sweep_move(here) { let ndsc = has_capability(CAP_NDSC) for (let next of data.spaces[here].adjacent) { - if (has_piece(next, GOVT, TROOPS)) - return true - if (ndsc && has_piece(next, GOVT, POLICE)) - return true + if (!set_has(game.op.spaces, next)) { + if (has_piece(next, GOVT, TROOPS)) + return true + if (ndsc && has_piece(next, GOVT, POLICE)) + return true + } if (is_loc(next) && !has_any_guerrilla(next)) { for (let nextnext of data.spaces[next].adjacent) { if (nextnext !== here) { - if (has_piece(nextnext, GOVT, TROOPS)) - return true - if (ndsc && has_piece(next, GOVT, POLICE)) - return true + if (!set_has(game.op.spaces, nextnext)) { + if (has_piece(nextnext, GOVT, TROOPS)) + return true + if (ndsc && has_piece(next, GOVT, POLICE)) + return true + } } } } @@ -2679,15 +2683,19 @@ function can_sweep_move(here) { function gen_sweep_move(here) { // TODO: only unmoved pieces (can't move twice) for (let next of data.spaces[here].adjacent) { - if (game.op.ndsc) - gen_piece_in_space(next, GOVT, POLICE) - gen_piece_in_space(next, GOVT, TROOPS) + if (!set_has(game.op.spaces, next)) { + if (game.op.ndsc) + gen_piece_in_space(next, GOVT, POLICE) + gen_piece_in_space(next, GOVT, TROOPS) + } if (is_loc(next) && !has_any_guerrilla(next)) { for (let nextnext of data.spaces[next].adjacent) { if (nextnext !== here) { - if (game.op.ndsc) - gen_piece_in_space(nextnext, GOVT, POLICE) - gen_piece_in_space(nextnext, GOVT, TROOPS) + if (!set_has(game.op.spaces, nextnext)) { + if (game.op.ndsc) + gen_piece_in_space(nextnext, GOVT, POLICE) + gen_piece_in_space(nextnext, GOVT, TROOPS) + } } } } -- cgit v1.2.3