The flock does not return to the fold, or neverending heresy
A few people have been commenting on heresy, so I took a look at the heresy events in provincial_conversion_events.txt. Event 1087, The Flock Returns to the Fold, I think isn't designed right. The triggers are:
(good, what you'd expect)
(bad, since then they'll only return to the true faith if ruled by an infidel or schismatic)
Wouldn't these be a better set of triggers?
(province is heretical, and is of the same faith as the ruler, who is not a heretic.)
A few people have been commenting on heresy, so I took a look at the heresy events in provincial_conversion_events.txt. Event 1087, The Flock Returns to the Fold, I think isn't designed right. The triggers are:
Code:
condition = {
type = has_province_effect
value = { heretic = yes }
}
Code:
condition = {
type = not
value = {
type = same_religion
}
}
Wouldn't these be a better set of triggers?
Code:
condition = {
type = same_religion
}
condition = {
type = has_province_effect
value = { heretic = yes }
}
condition = {
type = not
value = {
type = trait
value = heretic
}
}
Upvote
0