One line summary of your issue
Song Dynasty Living Members not Cleaned up via event JD.30504
Game Version
3.2.1
What expansions do you have installed?
All of the above
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
The event JD.30504 which is meant to prevent members of the ruling Chinese Dynasty from wandering around at the start of the game currently does not account for the Zhao of the Song Dynasty, which has the Dynasty ID of 1051151. This results in, for example, Zhao Kuangyin, the founder of the Song Dynasty who is five years old at the 936 start date, to be a courtier in a Chinese mercenary company.
Right now, the event only accounts for the Li family of the Tang dynasty and the Borijins of the Mongol/Yuan Empire, as can be seen in the current code in the event file, jd_chinese_status_and_policy_events.txt:
This happens regardless of mods as it is in the vanilla code.
The simplest way to fix this would be to make it so dynasty 1051151 (the Zhaos) are also affected by the above event.
Steps to reproduce the issue.
Upload Attachment
Song Dynasty Living Members not Cleaned up via event JD.30504
Game Version
3.2.1
What expansions do you have installed?
All of the above
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
The event JD.30504 which is meant to prevent members of the ruling Chinese Dynasty from wandering around at the start of the game currently does not account for the Zhao of the Song Dynasty, which has the Dynasty ID of 1051151. This results in, for example, Zhao Kuangyin, the founder of the Song Dynasty who is five years old at the 936 start date, to be a courtier in a Chinese mercenary company.
Right now, the event only accounts for the Li family of the Tang dynasty and the Borijins of the Mongol/Yuan Empire, as can be seen in the current code in the event file, jd_chinese_status_and_policy_events.txt:
Code:
character_event = { # Clean up living members of the chinese dynasty
id = JD.30504
hide_window = yes
is_triggered_only = yes
only_playable = yes
trigger = {
is_offmap_governor = yes
is_save_game = no
}
immediate = {
offmap_china = {
offmap_ruler = {
any_dynasty_member = {
limit = {
NOR = {
is_offmap_ruler = yes
is_ruler = yes
dynasty = 11100
dynasty = 1051210
}
}
death = { death_reason = death_went_back_to_china }
}
}
offmap_prev_ruler = {
any_dynasty_member = {
limit = {
NOR = {
is_offmap_ruler = yes
is_ruler = yes
dynasty = 11100
dynasty = 1051210
}
}
death = { death_reason = death_went_back_to_china }
}
}
}
}
}
This happens regardless of mods as it is in the vanilla code.
The simplest way to fix this would be to make it so dynasty 1051151 (the Zhaos) are also affected by the above event.
Steps to reproduce the issue.
Upload Attachment
Upvote
0