English Melting Pot event broken
The point is probably moot, since there are no Saxon culture provinces in the 1066 scenario at present, and the only Norman culture provinces are in France, but I don't believe that this event would ever fire if there were any Saxon or Norman culture provinces in England:
The two area conditions are ANDed together and are mutually exclusive. Those two conditions should be ORed together, similar to the way the culture conditions are ORed.
The point is probably moot, since there are no Saxon culture provinces in the 1066 scenario at present, and the only Norman culture provinces are in France, but I don't believe that this event would ever fire if there were any Saxon or Norman culture provinces in England:
Code:
province_event = {
id = 1091
picture = "event_intrigue"
trigger = {
condition = { type = area value = 72 }#Sth England
condition = { type = area value = 52 }#Nth England
condition = { type = year value = 1090 }
condition = {
type = or
condition = {
type = culture
value = saxon
}
condition = {
type = culture
value = norman
}
}
}
Upvote
0