Help with city state glitch

So in my city state mod I'm adding Melbourne, it's a cultured city. But when I look at it in game it's icon is messed up and it has washingtons icon instead of the city state icon. Help Me!!!Link to screenshots:http://forums.civfanatics.com/showthread.php?t=385450&page=3(you have to scroll down a bit)

What do you have as an icon reference in the file? I'd need to see the XML to fix it.

It should have this reference:

Code:
			<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
			<ArtStyleType>ARTSTYLE_INSERT_HERE</ArtStyleType>
			<ArtStyleSuffix>_INSERT_HERE</ArtStyleSuffix>
			<ArtStylePrefix>INSERT_HERE</ArtStylePrefix>
			<MinorCivTrait>MINOR_TRAIT_CULTURED</MinorCivTrait>

Replacing 'INSERT_HERE' for your city-specific stuff.
 
Code:
<Row>
			<Type>MINOR_CIV_MELBOURNE</Type>
			<Description>Melbourne</Description>
			<ShortDescription>Melbourne</ShortDescription>
			<Adjective>Melbourne</Adjective>
			<Civilopedia>TXT_KEY_CIV5_MELBOURNE_TEXT</Civilopedia>
			<DefaultPlayerColor>PLAYERCOLOR_MINOR_DARK_CYAN</DefaultPlayerColor>
			<ArtDefineTag>ART_DEF_CIVILIZATION_MINOR</ArtDefineTag>
			<ArtStyleType>ARTSTYLE_EUROPEAN</ArtStyleType>
			<ArtStyleSuffix>_EURO</ArtStyleSuffix>
			<ArtStylePrefix>EUROPEAN </ArtStylePrefix>
			<MinorCivTrait>MINOR_TRAIT_CULTURAL</MinorCivTrait>
		</Row>
That's the code.
 
Back
Top Bottom