From 5c5dc6458d6e736c233af88628d06f60350bfbd0 Mon Sep 17 00:00:00 2001 From: Tor Andersson Date: Wed, 10 May 2023 14:19:44 +0200 Subject: Don't allow dropping off units while infiltrating! --- rules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules.js b/rules.js index c997a35..48e113a 100644 --- a/rules.js +++ b/rules.js @@ -3378,7 +3378,7 @@ states.move = { gen_regular_move() } - if (game.move.used < 9) { + if (game.move.used < 9 && !game.move.infiltrated) { if (is_leader(who) && count_pieces_in_force(who) > 1) gen_action('drop_off') } -- cgit v1.2.3