"Religious Authority Decline" event
As i looked through the Religious_Events.txt i've found perhaps a little bug in event 1152 "Religious Authority Decline":
As you can see there is in acton_a two times the same command.
I don't think this is WAD, or???
EDIT: The same for event 1151!
As i looked through the Religious_Events.txt i've found perhaps a little bug in event 1152 "Religious Authority Decline":
Code:
###############################
# Religious Authority Decline #
###############################
character_event = {
id = 1152
picture = "event_religion"
trigger = {
condition = { type = is_independent }
condition = {
type = or
condition = {
type = has_law
value = { regal_supremacy = yes }
}
condition = {
type = has_law
value = { monastic_supremacy = yes }
}
}
condition = { type = year value = 1300 }
condition = {
type = not
value = {
type = year
value = 1420
}
}
}
mean_time_to_happen = {
months = 300
modifier = {
condition = { type = ruler_religion value = catholic }
factor = 1
}
modifier = {
condition = { type = ruler_religion value = orthodox }
factor = 1.5
}
modifier = {
condition = { type = ruler_religion value = muslim }
factor = 1
}
modifier = {
condition = { type = ruler_religion value = pagan }
factor = 0.5
}
}
action_a = {# We will accept this development!
[B] effect = { type = remove_next_advance value = clerical_celibacy }
effect = { type = remove_next_advance value = clerical_celibacy }[/B] }
}
As you can see there is in acton_a two times the same command.
I don't think this is WAD, or???
EDIT: The same for event 1151!
Upvote
0