Event WoL.594 (Concubine forgives abduction) is impossible to reach. This is because the calling event, WoL.591, has a trigger block that excludes a character with the "Abductor" opinion modifier:
This is clearly unintentional, because the event contains a conditional that checks for that very modifier in order to fire 594:
Code:
trigger = {
NOT = {
has_opinion_modifier = {
who = FROM
modifier = opinion_forced_consort
}
}
}
This is clearly unintentional, because the event contains a conditional that checks for that very modifier in order to fire 594:
Code:
if = {
limit = {
has_opinion_modifier = {
who = FROM
modifier = opinion_forced_consort
}
}
FROM = { character_event = { id = WoL.594 days = 7 random = 7 } } # Forgives abduction
break = yes
}
- 1
Upvote
0