Removing coastal star biases for in-game civs

DoktorApplejuce

Champion of Kirkwall
Joined
Apr 9, 2015
Messages
582
Location
Canada
How would I go about removing the coastal start bias of, say for example, England?

would it be:
Code:
	<Civilization_Start_Along_Ocean>
		<Delete CivilizationType="CIVILIZATION_ENGLAND"/>
	</Civilization_Start_Along_Ocean>

or

Code:
	<Civilization_Start_Along_Ocean>
		<Row>
			<CivilizationType>CIVILIZATION_ENGLAND</CivilizationType>
			<StartAlongOcean>false</StartAlongOcean>
		</Row>
	</Civilization_Start_Along_Ocean>

or

Code:
	<Civilization_Start_Along_Ocean>
		<Update>
			<Where CivilizationType="CIVILIZATION_ENGLAND"/>
			<Set StartAlongOcean="false"/>
		</Update>
	</Civilization_Start_Along_Ocean>
?
 
As you need to remove (delete) the entry for England from that table, it will be the first code block.
 
Top Bottom