In event WoL.10102 in wol_business_events.txt, option A has tests for kingdom and empire in ROOT scope. However, this event is a character event, and as far as I know these triggers and duchy are only valid in province scope (though some province events switch to county scope before using kingdom, so county scope may also be valid. If it is not valid, I can provide a list of offending events.)
Current:
Proposed fix:
Depending on what the intent was, any_demesne_province or any_realm_province could be substituted for capital_scope.
Current:
Code:
option = {
name = EVTOPTA_WOL_10102
set_character_flag = trade_route_progress
if = {
limit = {
OR = {
kingdom = { title = k_cuman }
kingdom = { title = k_turkestan }
empire = { title = e_persia }
empire = { title = e_abyssinia }
empire = { title = e_mali }
}
}
character_event = { id = WoL.10103 }
break = yes
}
character_event = { id = WoL.10104 }
}
Code:
option = {
name = EVTOPTA_WOL_10102
set_character_flag = trade_route_progress
if = {
limit = {
capital_scope = {
OR = {
kingdom = { title = k_cuman }
kingdom = { title = k_turkestan }
empire = { title = e_persia }
empire = { title = e_abyssinia }
empire = { title = e_mali }
}
}
}
character_event = { id = WoL.10103 }
break = yes
}
character_event = { id = WoL.10104 }
}
Upvote
0