[GS] How can I remove between districts adjacency bonuses from all districs (e.g.campus, holysites)

You could make a .sql file and simply write: DROP TABLE District_Adjacencies;
This may have ramifications though, so it may be a better option to use UPDATE instead, and replace all the districts' adjacency yields with blank values.
 
All district adjacency bonuses, or only the ones from adjacent districts? If the latter, then this should do that:
Code:
DELETE FROM District_Adjacencies
WHERE       YieldChangeId LIKE 'District_%';
The former would just be:
Code:
DELETE FROM District_Adjacencies;
 
Back
Top Bottom