Kaiserreich / Kaiserreich-DH

Home of the Kaiserreich mod for Darkest Hour
47 stars 25 forks source link

event script change in commit 1b757e4 causes crash on game start #69

Closed mechu1205 closed 3 years ago

mechu1205 commented 3 years ago

GitHub Desktop 2021-09-14 오전 2_31_52

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
}
}
Maxian25 commented 3 years ago

Thank, adding the fix.