diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-15 16:41:59 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-15 16:41:59 -0400 |
commit | 955ddb2180c1d176407a9005b2f70b71ef34183a (patch) | |
tree | d6aff0cff9d8656ee3d0502b58c8d17ca8e34431 /rules.js | |
parent | 6f638fea635028cf85722d7dadb327a26cdfa0e4 (diff) | |
download | vijayanagara-955ddb2180c1d176407a9005b2f70b71ef34183a.tar.gz |
fix event 17 pieces
Diffstat (limited to 'rules.js')
-rw-r--r-- | rules.js | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -6178,7 +6178,7 @@ CODE[8 * 2 + 0] = [ // SHADED 8 CODE[8 * 2 + 1] = [ [ vm_current, DS ], - [ vm_prompt, ()=>`In each Province adjacent clean_cmto Devagiri and/or Gulbarga, Govern for free ignoring location requirements and place a Troop.` ], + [ vm_prompt, ()=>`In each Province adjacent to Devagiri and/or Gulbarga, Govern for free ignoring location requirements and place a Troop.` ], [ vm_asm, ()=>game.vm.ignore_loc_req = true ], [ vm_space, true, 0, 999, (s)=>(is_adjacent_to_city(C_DEVAGIRI, s) || is_adjacent_to_city(C_GULBARGA, s)) && can_govern_in_space(s) ], [ vm_free_govern_in_space ], @@ -6451,8 +6451,9 @@ CODE[16 * 2 + 1] = [ CODE[17 * 2 + 0] = [ [ vm_current, BK ], [ vm_add_influence, BK ], - [ vm_prompt, "Remove up to 5 Delhi Sultanate Units from Provinces where you have a piece." ], - [ vm_piece, true, 0, 5, (p,s)=>is_ds_unit(p) && has_piece_faction(piece_space(p), BK) ], + [ vm_log_br ], + [ vm_prompt, "Remove up to 5 Delhi Sultanate pieces from Provinces where you have a piece." ], + [ vm_piece, true, 0, 5, (p,s)=>(is_ds_unit(p) || is_qasbah(p)) && has_piece_faction(piece_space(p), BK) ], [ vm_summary_remove ], [ vm_endpiece ], [ vm_pop_summary ], |