Okay so I found the root of a really bad issue where all of the academies are turning feudal instead of staying theocratic once the starting character dies and a new one succeeds them, under this section:
#################################################
Academies
#################################################
AI - Faux Aretuza election (on_death)
character_event = {
id = magic.1060
A little further down there's this line here:
trigger = {
has_landed_title = d_thanedd
}
This setup seems to work correctly when it comes to it being "inherited" by a sorcerer or sorceress. Problem is this seems to change the academies into a feudal title and no longer a theocratic one, this is allowing lieges to grant them titles and whatnot. I'm currently trying whatever I can to the best of my ability to find a work-around with no luck so far.
Good news.... I found the root of the issue.
I change it to:
trigger = {
has_titular_title = d_thanedd
}
...and it seems to keep the academy theocratic, but, it's no longer inherited by a sorcerer or sorceress just an average human character. This bug is pretty game-breaking as of right now.
Okay so I found the root of a really bad issue where all of the academies are turning feudal instead of staying theocratic once the starting character dies and a new one succeeds them, under this section:
#################################################
Academies
#################################################
AI - Faux Aretuza election (on_death)
character_event = {
id = magic.1060
A little further down there's this line here:
This setup seems to work correctly when it comes to it being "inherited" by a sorcerer or sorceress. Problem is this seems to change the academies into a feudal title and no longer a theocratic one, this is allowing lieges to grant them titles and whatnot. I'm currently trying whatever I can to the best of my ability to find a work-around with no luck so far.
Good news.... I found the root of the issue.
I change it to:
...and it seems to keep the academy theocratic, but, it's no longer inherited by a sorcerer or sorceress just an average human character. This bug is pretty game-breaking as of right now.