diff options
author | Tor Andersson <tor@ccxvii.net> | 2022-09-30 12:30:44 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2022-11-17 13:11:27 +0100 |
commit | a0b060839c320d6fa47fbe3b49c349a32aac8180 (patch) | |
tree | 38c12e630a13072ffae9d6ada3d5cbf0fbef4d50 | |
parent | 35dd1731dad24de9f4db0c4437596549bfd4f46d (diff) | |
download | rommel-in-the-desert-a0b060839c320d6fa47fbe3b49c349a32aac8180.tar.gz |
Fix bug with selecting units for Regroup Move 2.
-rw-r--r-- | rules.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3372,7 +3372,7 @@ states.move = { } // Select Regroup Move 2 - if (game.to1) { + if (game.to2) { for_each_hex_and_adjacent_hex(game.from2, from => { if (!has_enemy_unit(from) && from !== game.to2) { let fastest = fastest_undisrupted_and_unmoved_friendly_unit_in_hex(from) |