commit 1b757e4 (Fixed the Socialist Persia bugs) changes 4 lines in db\events\The Middle East\Socialist Persia.txt
One of them, line 1266, causes a crash when you load a game.
event = {
id = 59068
random = no
country = U53
picture = "internationale"
style = 2
exists = FRA <---------- this line
trigger = {
OR = {
headofstate = 153301
headofstate = 153122
}
}
This is because that line is outside the trigger block.
It should be inside the block, like this:
event = {
id = 59068
random = no
country = U53
picture = "internationale"
style = 2
trigger = {
exists = FRA
OR = {
headofstate = 153301
headofstate = 153122
}
}
commit 1b757e4 (Fixed the Socialist Persia bugs) changes 4 lines in db\events\The Middle East\Socialist Persia.txt
One of them, line 1266, causes a crash when you load a game.
This is because that line is outside the
trigger
block. It should be inside the block, like this: