Holy Land (edbbd8b2)

The turn is already reverted but I had the save-game still.

And I think I solved it if it happens again.

I found this thread:

And looking into my Database.log tells me that BUILDING_GOV_FAITH and DISTRICT_GOVERNMENT is missing.

Then I searched my mod folder and found it referenced in workshop/content/289070/2533573440/RemoveGovernmentPlazas/DB_RemoveGovernmentPlazas.sql

So if I just uncommend the deletion of those entries it seems to work for me now.

So my file looks like this now:

--DELETE FROM Districts WHERE DistrictType = 'DISTRICT_GOVERNMENT' ;
DELETE FROM Buildings WHERE BuildingType IN (
'BUILDING_GOV_TALL',
'BUILDING_GOV_WIDE',
'BUILDING_GOV_CONQUEST',
'BUILDING_GOV_CITYSTATES',
'BUILDING_GOV_SPIES',
--'BUILDING_GOV_FAITH',
'BUILDING_GOV_MILITARY',
'BUILDING_GOV_CULTURE',
'BUILDING_GOV_SCIENCE',
'BUILDING_QUEENS_BIBLIOTHEQUE'
) ;

I have no idea what this changes but now I’m able to load the game atleast. :slight_smile:

1 Like