diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-16 23:34:20 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-04-16 23:34:20 -0400 |
commit | 1642efbfd117fd92e0c8de53720955c5217ca4b4 (patch) | |
tree | 623a1f55dec06d7b7921fa589a7c6a8378699a37 /events.txt | |
parent | 9b241c84a5e50e959352e2a65c464d4208cdcce1 (diff) | |
download | vijayanagara-1642efbfd117fd92e0c8de53720955c5217ca4b4.tar.gz |
Fix Event 10 is_province
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -204,9 +204,9 @@ SHADED 9 EVENT 10 stay_eligible prompt "Move up to 4 Delhi Sultanate Units to adjacent Provinces." - piece_undo_opt 4 is_ds_unit(p) + piece_undo_opt 4 (is_ds_unit(p) && is_province(piece_space(p))) prompt "Move Delhi Sultanate Unit to an adjacent Province." - space_no_undo 1 is_adjacent(s, piece_space(game.vm.p)) + space_no_undo 1 (is_adjacent(s, piece_space(game.vm.p)) && is_province(s)) move endspace endpiece |