The event is WoL.98 from wol_seduction_events.
The conditions to break the event, and thus prevent the pregnancy are as follow:
(FROM is the woman)
Shouldn't the last line in limit be :
Else the event will allow pregnancies only for women who have less than 20% fertility.
The conditions to break the event, and thus prevent the pregnancy are as follow:
Code:
if = {
limit = {
OR = {
is_female = no
age = 45
is_pregnant = yes
FROM = { is_female = yes }
NOT = { fertility = 0.2 }
NOT = { FROM = { fertility = 0.2 } }
}
}
break = yes
Shouldn't the last line in limit be :
Code:
FROM = { NOT = { fertility = 0.2 } }