One trigger condition of provevent 1087, "The flock returns to the fold!", requires that the province in question does not have the realm religion.
I find that quite counterintuitive, as heresy is ended in the conversion events anyway and I do not really care about heretics from another religion. So, is this WAD or should it be change so that the event fires for same religion provinces?
Code:
##################################
# The flock returns to the fold! #
##################################
province_event = {
id = 1087
picture = "event_religion"
trigger = {
[b]condition = {
type = not
value = {
type = same_religion
}
}[/b]
condition = {
type = has_province_effect
value = { heretic = yes }
}
}
mean_time_to_happen = {
months = 240
modifier = {
condition = { type = trait value = just }
factor = 0.8
}
}
action_a = {
effect = { type = remove_province_effect value = heretic }
}
}
I find that quite counterintuitive, as heresy is ended in the conversion events anyway and I do not really care about heretics from another religion. So, is this WAD or should it be change so that the event fires for same religion provinces?
Code:
##################################
# The flock returns to the fold! #
##################################
province_event = {
id = 1087
picture = "event_religion"
trigger = {
[b]condition = {
type = same_religion
}[/b]
condition = {
type = has_province_effect
value = { heretic = yes }
}
}
mean_time_to_happen = {
months = 240
modifier = {
condition = { type = trait value = just }
factor = 0.8
}
}
action_a = {
effect = { type = remove_province_effect value = heretic }
}
}
Upvote
0