There is a bug from the imported roman government type from the imperial submod for the github version. The game freaks out and makes you nomadic if you restore the Pontifex as a Hellenic ruler who is Bureaucratic. The reason is because of weirdness caused by being both a landed ruler and a religious head.
You can fix this by replacing:
with
under the roman governent type in fuedal_governments.txt
You can fix this by replacing:
Code:
NAND = {
controls_religion = yes
NOT = { religion_group = muslim }
NOT = { religion = norse_pagan_reformed }
}
with
Code:
NAND = {
controls_religion = yes
NOT = { religion_group = muslim }
NOT = {
primary_title = {
is_landless_type_title = no
}
}
}
under the roman governent type in fuedal_governments.txt
- 2