Toying with the triggered_modifiers.txt file I found out that there is 2 entries for mediterranean breadbasket, one in singular and another in plural. Both are one after the other so it's easy to spot:
Code:
mediterranean_breadbasket = {
trigger = {
not = { owns = 100 } # Syracusae
not = { owns = 101 } # Panormus
not = { owns = 102 } # Sardinia
owns = 247 # Carthage
controls = 247
owns = 225 # Alexandria
controls = 225
}
global_tax_modifier = 0.05
icon = 9
}
mediterranean_breadbaskets = {
trigger = {
or = {
owns = 100 # Syracusae
owns = 101 # Panormus
owns = 102 # Sardinia
}
owns = 247 # Carthage
controls = 247
owns = 225 # Alexandria
controls = 225
}
global_tax_modifier = 0.05
icon = 9
}
Upvote
0