diff options
author | Joël Simoneau <simoneaujoel@gmail.com> | 2025-03-24 16:04:34 -0400 |
---|---|---|
committer | Joël Simoneau <simoneaujoel@gmail.com> | 2025-03-24 16:04:34 -0400 |
commit | 39ab4ad27b182e132d9ce79f3089affef4c1ea94 (patch) | |
tree | 4e465a1f0f620003c5575b646d4f21cac3015e67 /events.txt | |
parent | 207250e175faf0914293407e170f426b46df9b05 (diff) | |
download | vijayanagara-39ab4ad27b182e132d9ce79f3089affef4c1ea94.tar.gz |
Fix Event can_migrate_in_space
Diffstat (limited to 'events.txt')
-rw-r--r-- | events.txt | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -441,7 +441,7 @@ EVENT 20 current REBEL_FACTIONS add_influence (game.current) prompt "In Orissa or an adjacent Province, you may Migrate, Rally and then Build." - space_opt 1 (is_adjacent_to_city(C_WARANGAL, s) || s === S_BENGAL) + space_opt 1 (is_adjacent_to_city(C_WARANGAL, s) || s === S_BENGAL && can_migrate_in_space(s)) free_migrate free_rally free_build @@ -664,7 +664,7 @@ SHADED 30 EVENT 31 current REBEL_FACTIONS prompt "Free Migrate in a Province adjacent to Vijayanagara." - space_opt 1 (is_adjacent_to_city(C_VIJAYANAGARA, s)) + space_opt 1 (is_adjacent_to_city(C_VIJAYANAGARA, s) && can_migrate_in_space(s)) mark_space free_migrate clean_p |