Need Help With a Current Modding Project

Colion_Eire_Mods

Chieftain
Joined
Dec 7, 2017
Messages
6
I've been trying to create a TSL Europe map, and I am attempting to develop a mod that adds a few extra city states just to liven up and help fill in the map. I have created a mod file and I have been troubleshooting for a while, but I have no idea what went wrong. The problem is when I load the mod in the World Builder and attempt to add in the City States from the mod in the Scenario Editor, they just won't appear.

For reference, here is the mod:

<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 5/6/2020 6:02:46 PM -->
<GameData>

<MinorCivilizations>

<Row>
<Type>MINOR_CIV_AKTAU</Type>
<Description>TXT_KEY_CITYSTATE_AKTAU</Description>
<ShortDescription>TXT_KEY_CITYSTATE_AKTAU</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_AKTAU_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_AKTAU_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_PURPLE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_ASIAN</ArtStyleType>
<ArtStyleSuffix>_ASIA</ArtStyleSuffix>
<ArtStylePrefix>ASIAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_RELIGIOUS</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_ALGIERS</Type>
<Description>TXT_KEY_CITYSTATE_ALGIERS</Description>
<ShortDescription>TXT_KEY_CITYSTATE_ALGIERS</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_ALGIERS_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_ALGIERS_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GOLDENROD</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_AFRICAN</ArtStyleType>
<ArtStyleSuffix>_AFRICA</ArtStyleSuffix>
<ArtStylePrefix>AFRICAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MERCANTILE</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_BAGHDAD</Type>
<Description>TXT_KEY_CITYSTATE_BAGHDAD</Description>
<ShortDescription>TXT_KEY_CITYSTATE_BAGHDAD</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_BAGHDAD_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_BAGHDAD_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_MIDDLE_PURPLE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_AFRICAN</ArtStyleType>
<ArtStyleSuffix>_AFRICA</ArtStyleSuffix>
<ArtStylePrefix>AFRICAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_CULTURAL</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_BARCELONA</Type>
<Description>TXT_KEY_CITYSTATE_BARCELONA</Description>
<ShortDescription>TXT_KEY_CITYSTATE_BARCELONA</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_BARCELONA_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_BARCELONA_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_PURPLE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MARITIME</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_BORDEAUX</Type>
<Description>TXT_KEY_CITYSTATE_BORDEAUX</Description>
<ShortDescription>TXT_KEY_CITYSTATE_BORDEAUX</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_BORDEAUX_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_BORDEAUX_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPE</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_CULTURAL</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_CAGLIARI</Type>
<Description>TXT_KEY_CITYSTATE_CAGLIARI</Description>
<ShortDescription>TXT_KEY_CITYSTATE_CAGLIARI</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_CAGLIARI_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_CAGLIARI_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_WHITE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MERCANTILE</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_CHISINAU</Type>
<Description>TXT_KEY_CITYSTATE_CHISINAU</Description>
<ShortDescription>TXT_KEY_CITYSTATE_CHISINAU</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_CHISINAU_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_CHISINAU_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_BLUE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPE</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MILITARISTIC</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_HELSINIKI</Type>
<Description>TXT_KEY_CITYSTATE_HELSINIKI</Description>
<ShortDescription>TXT_KEY_CITYSTATE_HELSINIKI</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_HELSINIKI_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_HELSINIKI_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_WHITE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MLITARISTIC</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_NOVGOROD</Type>
<Description>TXT_KEY_CITYSTATE_NOVGOROD</Description>
<ShortDescription>TXT_KEY_CITYSTATE_NOVGOROD</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_NOVGOROD_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_NOVGOROD_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MERCANTILE</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_OSLO</Type>
<Description>TXT_KEY_CITYSTATE_OSLO</Description>
<ShortDescription>TXT_KEY_CITYSTATE_OSLO</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_OSLO_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_OSLO_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_CULTURAL</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_PERM</Type>
<Description>TXT_KEY_CITYSTATE_PERM</Description>
<ShortDescription>TXT_KEY_CITYSTATE_PERM</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_PERM_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_PERM_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_CULTURAL</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_ROSTOV</Type>
<Description>TXT_KEY_CITYSTATE_ROSTOV</Description>
<ShortDescription>TXT_KEY_CITYSTATE_ROSTOV</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_ROSTOV_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_ROSTOV_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MARITIME</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_SEVASTOPOL</Type>
<Description>TXT_KEY_CITYSTATE_SEVASTOPOL</Description>
<ShortDescription>TXT_KEY_CITYSTATE_SEVASTOPOL</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_SEVASTOPOL_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_SEVASTOPOL_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MARITIME</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_VOLGOGRAD</Type>
<Description>TXT_KEY_CITYSTATE_VOLGOGRAD</Description>
<ShortDescription>TXT_KEY_CITYSTATE_VOLGOGRAD</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_VOLGOGRAD_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_VOLGOGRAD_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_YELLOW</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MILITARISTIC</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_VORONEZH</Type>
<Description>TXT_KEY_CITYSTATE_VORONEZH</Description>
<ShortDescription>TXT_KEY_CITYSTATE_VORONEZH</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_VORONEZH_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_VORONEZH_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_GREEN</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MERCANTILE</MinorCivTrait>
</Row>

<Row>
<Type>MINOR_CIV_ZAGREB</Type>
<Description>TXT_KEY_CITYSTATE_ZAGREB</Description>
<ShortDescription>TXT_KEY_CITYSTATE_ZAGREB</ShortDescription>
<Adjective>TXT_KEY_CITYSTATE_ZAGREB_ADJ</Adjective>
<Civilopedia>TXT_KEY_CITYSTATE_ZAGREB_PEDIA</Civilopedia>
<DefaultPlayerColor>PLAYERCOLOR_MINOR_PURPLE</DefaultPlayerColor>
<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
<ArtStyleSuffix>_EUROPE</ArtStyleSuffix>
<ArtStylePrefix>EUROPEAN</ArtStylePrefix>
<MinorCivTrait>MINOR_TRAIT_MERCANTILE</MinorCivTrait>
</Row>

</MinorCivilizations>

<MinorCivilization_CityNames>

<Row>
<MinorCivType>MINOR_CIV_AKTAU</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_AKTAU</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_ALGIERS</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_ALGIERS</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_BAGHDAD</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_BAGHDAD</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_BARCELONA</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_BARCELONA</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_BORDEAUX</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_BORDEAUX</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_CAGLIARI</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_CAGLIARI</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_CHISINAU</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_CHISINAU</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_HELSINIKI</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_HELSINIKI</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_NOVGOROD</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_NOVGOROD</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_OSLO</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_OSLO</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_PERM</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_PERM</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_ROSTOV</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_ROSTOV</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_SEVASTOPOL</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_SEVASTOPOL</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_VOLGOGRAD</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_VOLGOGRAD</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_VORONEZH</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_VORONEZH</CityName>
</Row>

<Row>
<MinorCivType>MINOR_CIV_ZAGREB</MinorCivType>
<CityName>TXT_KEY_CITYSTATE_ZAGREB</CityName>
</Row>

</MinorCivilization_CityNames>

<MinorCivilization_Flavors>

<Row>
<MinorCivType>MINOR_CIV_AKTAU</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>5</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_AKTAU</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>10</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_AKTAU</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_AKTAU</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>0</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_ALGIERS</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>3</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ALGIERS</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>6</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ALGIERS</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>2</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ALGIERS</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>8</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_BAGHDAD</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>6</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BAGHDAD</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BAGHDAD</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BAGHDAD</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>10</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_BARCELONA</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BARCELONA</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>10</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BARCELONA</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>8</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BARCELONA</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>0</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_BORDEAUX</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BORDEAUX</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>6</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BORDEAUX</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_BORDEAUX</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>2</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_CAGLIARI</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>8</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_CAGLIARI</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_CAGLIARI</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_CAGLIARI</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>1</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_CHISINAU</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>10</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_CHISINAU</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_CHISINAU</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_CHISINAU</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>0</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_HELSINIKI</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_HELSINIKI</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>10</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_HELSINIKI</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>8</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_HELSINIKI</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>4</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_NOVGOROD</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_NOVGOROD</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_NOVGOROD</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>2</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_NOVGOROD</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>6</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_OSLO</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>1</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_OSLO</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>1</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_OSLO,</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_OSLO</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>2</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_PERM</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_PERM</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>5</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_PERM</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>5</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_PERM</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>5</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_ROSTOV</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>6</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ROSTOV</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>2</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ROSTOV</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>2</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ROSTOV</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>4</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_SEVASTOPOL</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>8</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_SEVASTOPOL</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>6</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_SEVASTOPOL</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_SEVASTOPOL</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>1</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_VOLGOGRAD</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_VOLGOGRAD</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_VOLGOGRAD</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>4</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_VOLGOGRAD</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>3</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_VORONEZH</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>2</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_VORENZH</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>3</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_VORONEZH</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>9</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_VORONEZH</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>1</Flavor>
</Row>

<Row>
<MinorCivType>MINOR_CIV_ZAGREB</MinorCivType>
<FlavorType>FLAVOR_EXPANSION</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ZAGREB</MinorCivType>
<FlavorType>FLAVOR_CITY_DEFENSE</FlavorType>
<Flavor>10</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ZAGREB</MinorCivType>
<FlavorType>FLAVOR_DEFENSE</FlavorType>
<Flavor>0</Flavor>
</Row>
<Row>
<MinorCivType>MINOR_CIV_ZAGREB</MinorCivType>
<FlavorType>FLAVOR_WONDER</FlavorType>
<Flavor>5</Flavor>
</Row>

</MinorCivilization_Flavors>

<Language_en_US>

<Row Tag="TXT_KEY_CITYSTATE_AKTAU">
<Text>Aktau</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_AKTAU_ADJ">
<Text>Aktan</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_AKTAU_PEDIA">
<Text>Aktau is a city in Kazakhstan, located on the Eastern shore of the Caspian Sea. Its current name means "white mountain" in Kazakh, which may be due to its cliffs that overlook the Caspian. From 1964 to 1991 city was known as Shevchenko. Its former name was given due to the eponymous Ukrainian poet's period of exile in the area. It is located on the Mangyshlak Peninsula and is the capital of Mangystau Region. Aktau is known for its unique block address system. Almost no streets in Aktau have names; instead, addresses generally consist of three numbers: the district number, building number, and the apartment number. This is because Aktau was originally planned as a camp for the workers of the oil industry.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_ALGIERS">
<Text>Algiers</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_ALGIERS_ADJ">
<Text>Algierian</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_ALGIERS_PEDIA">
<Text>Algiers is the capital and largest city of Algeria. The city's population currently sits at four million. One estimate puts the population of the larger metropolitan city to be around 5,000,000. Algiers is located on the Mediterranean Sea and in the north-central portion of Algeria. Algiers is situated on the west side of a bay of the Mediterranean Sea. The modern part of the city is built on the level ground by the seashore; the old part, the ancient city of the deys, climbs the steep hill behind the modern town and is crowned by the casbah or citadel, 122 metres (400 ft) above the sea. The casbah and the two quays form a triangle.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_BAGHDAD">
<Text>Baghdad</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_BAGHDAD_ADJ">
<Text>Baghdadi</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_BAGHDAD_PEDIA">
<Text>Baghdad is the capital of Iraq and the second-largest city in the Arab world after Cairo. Located along the Tigris River, the city was founded in the 8th century and became the capital of the Abbasid Caliphate. Within a short time of its inception, Baghdad evolved into a significant cultural, commercial, and intellectual center of the Muslim world. This, in addition to housing several key academic institutions, including the House of Wisdom, as well as hosting a multiethnic and multireligious environment, garnered the city a worldwide reputation as the "Centre of Learning".</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_BARCELONA">
<Text>Barcelona</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_BARCELONA_ADJ">
<Text>Barcelonan</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_BARCELONA_PEDIA">
<Text>Barcelona is a major port city on the coast of northeastern Spain. It is the capital and largest city of the autonomous community of Catalonia, as well as the second most populous municipality of Spain. With a population of 1.6 million within city limits, its urban area extends to numerous neighbouring municipalities within the Province of Barcelona and is home to around 4.8 million people, making it the fifth most populous urban area in the European Union after Paris, the Ruhr area, Madrid, and Milan. It is one of the largest metropolises on the Mediterranean Sea, located on the coast between the mouths of the rivers Llobregat and Besòs, and bounded to the west by the Serra de Collserola mountain range.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_BORDEAUX">
<Text>Bordeaux</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_BORDEAUX_ADJ">
<Text>Bordelais</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_BORDEAUX_PEDIA">
<Text>Bordeaux is a port city on the Garonne in the Gironde department in Southwestern France. Being at the center of a major wine-growing and wine-producing region, Bordeaux remains a prominent powerhouse and exercises significant influence on the world wine industry although no wine production is conducted within the city limits. It is home to the world's main wine fair, Vinexpo, and the wine economy in the metro area takes in 14.5 billion euros each year. Bordeaux wine has been produced in the region since the 8th century. The historic part of the city is on the UNESCO World Heritage List as "an outstanding urban and architectural ensemble" of the 18th century. After Paris, Bordeaux has the highest number of preserved historical buildings of any city in France.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_CAGLIARI">
<Text>Cagliari</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_CAGLIARI_ADJ">
<Text>Cagliarian</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_CAGLIARI_PEDIA">
<Text>Cagliari is an Italian municipality and the capitol of the island of Sardinia, an autonomous region of Italy. Cagliari's Sardinian name Casteddu translates literally to castle. It has about 150,000 inhabitants, while its metropolitan city (contains more than 400,000 inhabitants. According to Eurostat, the population of the Functional urban area, the commuting zone of Cagliari, rises to 475,000. Cagliari has seen the rule of several civilisations. Under the buildings of the modern city there is a continuous stratification attesting to human settlement over the course of some five thousand years, from the Neolithic to today. Historical sites include the prehistoric Domus de Janas, very damaged by cave activity, a large Carthaginian era necropolis, a Roman era amphitheatre, a Byzantine basilica, three Pisan-era towers and a strong system of fortification that made the town the core of Spanish Habsburg imperial power in the western Mediterranean Sea. Its natural resources have always been its sheltered harbour, the often powerfully fortified hill of Castel di Castro, the modern Casteddu, the salt from its lagoons, and, from the hinterland, wheat from the Campidano plain and silver and other ores from the Iglesiente mines.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_CHISINAU">
<Text>Chisinau</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_CHISINAU_ADJ">
<Text>Moldavian</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_CHISINAU_PEDIA">
<Text>Chisinau, also known as Kishinev, is the capitol and largest city of the Republic of Moldova. The city is Moldova's main industrial and commercial center, and is located in the middle of the country, on the river Bac, a tributary of the Dniester. The city proper had a population of 500,000, while the population of the Municipality of Chisinau (which includes the city itself and other nearby communities) was 700,000. Chisinau is the most economically prosperous locality in Moldova and its largest transportation hub.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_HELSINIKI">
<Text>Helsiniki</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_HELSINIKI_ADJ">
<Text>Finnish</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_HELSINIKI_PEDIA">
<Text>Helsinki is the capitol and most populous city of Finland. Located on the shore of the Gulf of Finland, it is the seat of the region of Uusimaa in southern Finland, and has a population of 650,000. The city's urban area has a population of 1,250,000 making it by far the most populous urban area in Finland as well as the country's most important center for politics, education, finance, culture, and research. Helsinki is located 80 kilometres (50 mi) north of Tallinn, Estonia, 400 km (250 mi) east of Stockholm, Sweden, and 300 km (190 mi) west of Saint Petersburg, Russia. It has close historical ties with these three cities.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_NOVGOROD">
<Text>Novgorod</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_NOVGOROD_ADJ">
<Text>Novgorodian</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_NOVGOROD_PEDIA">
<Text>Nizhny Novgorod, often colloquially shortened to Nizhny, is a city in Russia and the administrative center of Volga Federal District and Nizhny Novgorod Oblast. From 1932 to 1990, it was known as Gorky, after the writer Maxim Gorky, who was born there.The city is an important economic, transportation, scientific, educational and cultural center in Russia and the vast Volga-Vyatka economic region, and is the main center of river tourism in Russia. In the historic part of the city there are many universities, theaters, museums and churches. Nizhny Novgorod is located about 400 km (250 mi) east of Moscow, where the Oka River empties into the Volga.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_OSLO">
<Text>Oslo</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_OSLO_ADJ">
<Text>Oslan</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_OSLO_PEDIA">
<Text>Oslo is the capitol and most populous city of Norway. During the Viking Age the area was part of Viken, the northernmost Danish province. Oslo was founded as a city at the end of the Viking Age in the year 1040 under the name Ánslo, and established as a kaupstad or trading place in 1048 by Harald Hardrada. The city was elevated to a bishopric in 1070 and a capital under Haakon V of Norway around 1300. Personal unions with Denmark from 1397 to 1523 and again from 1536 to 1814 reduced its influence. After being destroyed by a fire in 1624, during the reign of King Christian IV, a new city was built closer to Akershus Fortress and named Christiania in the king's honour. It was established as a municipality on 1 January 1838. The city functioned as the capitol of Norway during the 1814–1905 union between Sweden and Norway. From 1877, the city's name was spelled Kristiania in government usage, a spelling that was adopted by the municipal authorities only in 1897. In 1925 the city, after incorporating the village retaining its former name, was renamed Oslo. In 1948 Oslo merged with Aker, a municipality which surrounded the capital and which was 27 times larger, thus creating the modern, vastly enlarged Oslo municipality.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_PERM">
<Text>Perm</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_PERM_ADJ">
<Text>Permic</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_PERM_PEDIA">
<Text>Perm is a city and the administrative centre of Perm Krai. It is located on the banks of the Kama River in Western Russia, near the Ural Mountains. Perm's population is roughly one million. The city is the thirteenth most populous in Russia. It was previously known as Yagoshikha (or Yegoshikha), until 1781, Perm (until 1940). From 1940 to 1957 it was named Molotov in honor of Vyacheslav Molotov.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_ROSTOV">
<Text>Rostov</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_ROSTOV_ADJ">
<Text>Rostovan</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_ROSTOV_PEDIA">
<Text>Rostov-on-Don is a port city that lies in the southeastern part of the East European Plain on the Don River, 32 kilometers (20 mi) from the Sea of Azov. The southwestern suburbs of the city abut the Don River delta. The population is over one million people. From ancient times, the area around the mouth of the Don River has held cultural and commercial importance. Ancient indigenous inhabitants included the Scythian, Sarmat, and Savromat tribes. It was the site of Tanais, an ancient Greek colony, Fort Tana, under the Genoese and Fort Azak in the time of the Ottoman Empire. During the 19th century, due to its river connections with Russia's interior, Rostov developed into a major trade centre and communications hub. By the late 1800s, concurrent with improvements in communications, heavy industry developed. Industrial growth was accompanied by a rapid increase in population, with 100,000 residents registered in Rostov by the end of the nineteenth century along with approximately 140 industrial businesses. In 1928, the two towns were merged. The former town border lies beneath the Teatralnaya Square of central Rostov-on-Don. By 1928, following the incorporation of the hitherto neighbouring city of Nakhichevan-on-Don, Rostov had become the third largest city in Russia.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_SEVASTOPOL">
<Text>Sevastopol</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_SEVASTOPOL_ADJ">
<Text>Crimean</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_SEVASTOPOL_PEDIA">
<Text>Sevastopol is the largest city on the Crimean Peninsula and a major Black Sea port. The population is made up of mostly ethnic Russians with minorities of Ukrainians and Tatars. Sevastopol has a population of 400,000, concentrated mostly near the Sevastopol Bay. The location and navigability of the city's harbours have made Sevastopol a strategically important port and naval base throughout history. The city has been a home to the Russian Black Sea Fleet, which is why it was considered as a separate city in Crimea of significant military importance and was once operated by the Soviet Union as a closed city. Although relatively small at 864 square kilometres (334 sq mi), Sevastopol's unique naval and maritime features have been the basis for a robust economy. The city enjoys mild winters and moderate warm summers, characteristics that help make it a popular seaside resort and tourist destination, mainly for visitors from the former Soviet republics. The city is also an important centre for marine biology research. In particular, dolphins have been studied and trained in the city by the military since the end of World War II.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_VOLGOGRAD">
<Text>Volgograd</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_VOLGOGRAD_ADJ">
<Text>Volgan</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_VOLGOGRAD_PEDIA">
<Text>Volgograd, formerly known as Tsaritsyn, and Stalingrad from 1925–1961, is an industrial city and the administrative centre of Volgograd Oblast, Russia. The city lies on the western bank of the Volga River. The Soviets' Battle of Stalingrad against invading German and its allied forces in World War II was one of the largest and bloodiest battles in the history of warfare. Known locally as the "Hero City", Volgograd today is the site of The Motherland Calls, an 85-metre high statue dedicated to the heroes of the battle. The city has many tourist attractions, such as museums, sandy beaches, and a self-propelled floating church. Its population was 1,021,215 at the 2010 Census, growing from 1,011,417 in the 2002 Census.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_VORONEZH">
<Text>Voronezh</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_VORONEZH_ADJ">
<Text>Voronezhi</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_VORONEZH_PEDIA">
<Text>Voronezh, sometimes romanized as Voronež, is a city and the administrative center of Voronezh Oblast, Russia, straddling the Voronezh River and located 12 kilometers (7.5 mi) from where it flows into the Don river. The city sits on the Southeastern Railway, which connects European Russia with the Urals and Siberia, the Caucasus and Ukraine, and the M4 highway. Its population in 2010 was estimated to be at one million up from 900,000 recorded in the 2010 Census. It is the thirteenth most populous city in the country.</Text>
</Row>

<Row Tag="TXT_KEY_CITYSTATE_ZAGREB">
<Text>Zagreb</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_ZAGREB_ADJ">
<Text>Croatian</Text>
</Row>
<Row Tag="TXT_KEY_CITYSTATE_ZAGREB_PEDIA">
<Text>Zagreb is the capital and the largest city of Croatia. It is located in the northwest of the country, along the Sava river, at the southern slopes of the Medvednica mountain. Zagreb lies at an elevation of approximately 122 m (400 ft) above sea level. The estimated population of the city in 2018 was 800,000. The population of the Zagreb urban area is one million, which approximately a quarter of the total population of Croatia. Zagreb is a city with a rich history dating from the Roman times to the present day. The oldest settlement located in the vicinity of the city was the Roman Andautonia, in today's Scitarjevo. The name "Zagreb" was first recorded in 1134, in reference to the foundation of the settlement at Kaptol in 1094. Zagreb became a free royal town in 1242.</Text>
</Row>

</Language_en_US>

</GameData>​
 
  1. Enable the mod that adds these city states to the game
  2. Start up and run a throw-away modded game with the mod enabled
  3. Once you have gotten to the point were you are in-game and can found your city, just exit directly to desktop. This will preserve the content of the database.
  4. Now open the Worldbuilder map and try again
As a general rule Worldbuilder reflects what was last in the database when the game was last run, so even though you may be "adding" the mod to the map, it may not actually be affecting the configuration within Worldbuilder if the code was not added to the database in the usual manner.
 
Top Bottom