For the culture change event, id 4002 in colony.txt, it has in the trigger:
Which as I see it will only fire if the barbarian level in the province is NOT one, meaning it's zero. However, in the modifiers there are:
Which suggests to me a whole bunch of triggers that can't possibly be true. Presumably this is an error of some kind?
Code:
trigger = {
[b]NOT = { barbarian_power = 1 }[/b]
has_governor = yes
governor_scope = {
charisma = 1
}
owner = {
NOT = { primary_culture = THIS }
}
NOT = { civilization_value = 90 }
}
Which as I see it will only fire if the barbarian level in the province is NOT one, meaning it's zero. However, in the modifiers there are:
Code:
modifier = {
NOT = { barbarian_power = 2 }
factor = 0.9
}
modifier = {
NOT = { barbarian_power = 3 }
factor = 0.9
}
modifier = {
NOT = { barbarian_power = 4 }
factor = 0.9
}
modifier = {
barbarian_power = 7
factor = 1.1
}
modifier = {
barbarian_power = 8
factor = 1.1
}
modifier = {
barbarian_power = 9
factor = 1.1
}
Which suggests to me a whole bunch of triggers that can't possibly be true. Presumably this is an error of some kind?
Upvote
0