Wrong:
Correct:
Code:
trigger = {
technology = 3390
technology = 15500
NOT = {
is_tech_active = 7050
}
OR = {
technology = 12140
technology = 15500
NOT = {
is_tech_active = 7050
}
}
}
Correct:
Code:
trigger = {
OR = {
technology = 3390
technology = 12140
}
technology = 15500
NOT = { is_tech_active = 7050 }
}
Upvote
0