From 39ab4ad27b182e132d9ce79f3089affef4c1ea94 Mon Sep 17 00:00:00 2001 From: Joël Simoneau Date: Mon, 24 Mar 2025 16:04:34 -0400 Subject: Fix Event can_migrate_in_space --- events.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'events.txt') diff --git a/events.txt b/events.txt index e892bf5..a11e725 100644 --- a/events.txt +++ b/events.txt @@ -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 -- cgit v1.2.3