diff options
author | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-20 06:04:22 +0200 |
---|---|---|
committer | Mischa Untaga <99098079+MischaU8@users.noreply.github.com> | 2023-10-20 06:04:22 +0200 |
commit | d5fa15333f25c2d0ec5092eb21f503f7b82dfef7 (patch) | |
tree | 8282d808f6139f54fd22be19338201c3141f53ac | |
parent | c8cb24b8dc13895573db5c37a47ee74c27cdabd2 (diff) | |
download | algeria-d5fa15333f25c2d0ec5092eb21f503f7b82dfef7.tar.gz |
move drm and border zone fixes
-rw-r--r-- | rules.js | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -497,7 +497,8 @@ function clear_unit_dispersed(u) { } function move_unit(u, to) { - log(`>Moved U${u} to A${to}`) + let loc = unit_loc(u) + log(`>Moved U${u} from A${loc} to A${to}`) set_unit_loc(u, to) set_unit_box(u, OC) } @@ -3240,8 +3241,9 @@ states.fln_move = { let loc = unit_loc(unit) push_undo() - let drm = -count_patrol_units_in_loc(loc) - if (is_border_crossing(loc, to)) { + // Note that the die roll is modified by the number of Government units on Patrol in the area moved to, not from. + let drm = -count_patrol_units_in_loc(to) + if (is_border_crossing(loc, to) && game.border_zone_active) { drm += game.border_zone_drm } let [_result, effect] = roll_mst(drm) @@ -4503,6 +4505,9 @@ function unit_redeployment() { } } }) + + restore_air_helo_avail() + game.border_zone_active = false } function roll_coup_table(drm=0) { @@ -4808,7 +4813,6 @@ function goto_turn_interphase() { unit_and_area_recovery() unit_redeployment() - restore_air_helo_avail() final_psl_adjustment() if (check_victory()) |