One line summary of your issue
Error in triggers for minor titles with Equality/Enatic Clans doctrines
Game Version
3.2.1
What expansions do you have installed?
All of the above
Do you have mods enabled?
No
Please explain your issue is in as much detail as possible.
The female_can_hold_minor_commander_title_trigger and the female_can_hold_minor_title_triggers have multiple different conditions under which women can be appointed. One of these is for pagan religions reformed with the Equality or Enatic Clans doctrine. However, as written, the woman's liege must have both Equality and Enatic Clans doctrines (which is impossible). It's just a missing OR in both triggers.
Here is the section of the script in 00_scripted_triggers.txt that contains the error:
Steps to reproduce the issue.
Upload Attachment
Error in triggers for minor titles with Equality/Enatic Clans doctrines
Game Version
3.2.1
What expansions do you have installed?
All of the above
Do you have mods enabled?
No
Please explain your issue is in as much detail as possible.
The female_can_hold_minor_commander_title_trigger and the female_can_hold_minor_title_triggers have multiple different conditions under which women can be appointed. One of these is for pagan religions reformed with the Equality or Enatic Clans doctrine. However, as written, the woman's liege must have both Equality and Enatic Clans doctrines (which is impossible). It's just a missing OR in both triggers.
Here is the section of the script in 00_scripted_triggers.txt that contains the error:
Code:
custom_tooltip = {
text = tooltip_feminist_liege_religion_feature
AND = {
OR = {
has_religion_feature = religion_equal
has_religion_feature = religion_matriarchal
}
liege = {
has_religion_feature = religion_equal
has_religion_feature = religion_matriarchal
}
}
}
Steps to reproduce the issue.
Upload Attachment
Upvote
0