Description
The Domination tradition has contradictory AI weights logic (v2.0.0 daf0)
Game Version
2.0.0 (daf0)
What version do you use?
Steam
What expansions do you have installed?
Synthetic Dawn,
Utopia,
Leviathans Story Pack, All of the above
Do you have mods enabled?
No
Please explain your issue is in as much detail as possible.
The AI is unlikely to adopt the Domination traditions unless it already has subjects.
However, as of version 2.0, the Domination Tradition is what unlocks the ability to demand vassalisation/tribute in the first place.
This logic loop results in the tradition's effective weight being the lowest of all traditions (20 base with a factor of... 0.01) and even Authoritarians (who are supposed to favour it) are unlikely to consider it over other options.
Steps to reproduce the issue.
Relevant code from common\traditions\00_domination.txt:
Upload Attachment
The Domination tradition has contradictory AI weights logic (v2.0.0 daf0)
Game Version
2.0.0 (daf0)
What version do you use?
Steam
What expansions do you have installed?
Synthetic Dawn,
Utopia,
Leviathans Story Pack, All of the above
Do you have mods enabled?
No
Please explain your issue is in as much detail as possible.
The AI is unlikely to adopt the Domination traditions unless it already has subjects.
However, as of version 2.0, the Domination Tradition is what unlocks the ability to demand vassalisation/tribute in the first place.
This logic loop results in the tradition's effective weight being the lowest of all traditions (20 base with a factor of... 0.01) and even Authoritarians (who are supposed to favour it) are unlikely to consider it over other options.
Steps to reproduce the issue.
Relevant code from common\traditions\00_domination.txt:
Code:
ai_weight = {
factor = 20
# generally don't pick unless we have subjects
modifier = {
factor = 0.01
NOT = {
any_subject = {
OR = {
is_subject_type = tributary
is_subject_type = vassal
}
}
}
}
modifier = {
factor = 2
has_ethic = ethic_authoritarian
}
modifier = {
factor = 3
has_ethic = ethic_fanatic_authoritarian
}
}
Upload Attachment
Upvote
0