One line summary of your issue
[3.1.0 KKAD] Reformed Pagans Can't Build University or Library Great Works
Game Version
3.1.0
What expansions do you have installed?
All of the above
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
Reformed pagans can't build university or library great works. Unreformed Hellenic pagans can't build university or library great works. Judging from the "active = { }" blocks of the scripting, the University would be active for reformed pagans, and the Library would be inactive (since its "active" block is the same as the problematic "trigger_if" condition).
Here's a background discussion:
https://forum.paradoxplaza.com/foru...-pagans-build-libraries-universities.1165897/
Here are the fixes for the potential and active blocks that I put in my personal mod:
Steps to reproduce the issue.
Try to build a university or library great work as a reformed pagan or an unreformed Hellenic. See whether university or library great works are active for reformed pagans or unreformed Hellenics.
Upload Attachment
[3.1.0 KKAD] Reformed Pagans Can't Build University or Library Great Works
Game Version
3.1.0
What expansions do you have installed?
All of the above
Do you have mods enabled?
Yes
Please explain your issue is in as much detail as possible.
Reformed pagans should be able to build the Library and University Great Works. If this is not the case, please make a bug report on the bug forums!![]()
Reformed pagans can't build university or library great works. Unreformed Hellenic pagans can't build university or library great works. Judging from the "active = { }" blocks of the scripting, the University would be active for reformed pagans, and the Library would be inactive (since its "active" block is the same as the problematic "trigger_if" condition).
Here's a background discussion:
https://forum.paradoxplaza.com/foru...-pagans-build-libraries-universities.1165897/
Here are the fixes for the potential and active blocks that I put in my personal mod:
Code:
potential = {
is_nomadic = no
trigger_if = {
limit = {
OR = {
religion_group = pagan_group
is_reformed_religion = no
}
}
OR = {
religion = hellenic_pagan
is_reformed_religion = yes
NOT = { religion_group = pagan_group }
}
}
}
active = {
trigger_if = {
limit = {
OR = {
religion_group = pagan_group
is_reformed_religion = no
}
}
ROOT = {
OR = {
religion = hellenic_pagan
is_reformed_religion = yes
NOT = { religion_group = pagan_group }
}
}
}
}
Steps to reproduce the issue.
Try to build a university or library great work as a reformed pagan or an unreformed Hellenic. See whether university or library great works are active for reformed pagans or unreformed Hellenics.
Upload Attachment
Upvote
0