Lorenzo1906
Chieftain
- Joined
- May 9, 2010
- Messages
- 2
I added a NamedRiver this way
And in another file
That is working fine, but when I try to add a NamedVolcano, it just show LOC_NAMED_LR_ARENAL_VOLCANO_NAME, I am adding the volcano this way:
And in another file:
I tried to check the localization database but I couldn't find neither the river nor the volcano, which I think make everything more weird.
Thanks a lot for any help
Code:
<NamedRivers>
<Row NamedRiverType="NAMED_LR_RIVER_COLORADO" Name="LOC_NAMED_LR_RIVER_COLORADO_NAME"/>
</NamedRivers>
<NamedRiverCivilizations>
<Row NamedRiverType="NAMED_LR_RIVER_COLORADO" CivilizationType="CIVILIZATION_LR_CIV"/>
</NamedRiverCivilizations>
And in another file
Code:
<LocalizedText>
<Row Tag="LOC_NAMED_LR_RIVER_COLORADO_NAME" Language="en_US">
<Text>Rio Colorado</Text>
</Row>
</LocalizedText>
That is working fine, but when I try to add a NamedVolcano, it just show LOC_NAMED_LR_ARENAL_VOLCANO_NAME, I am adding the volcano this way:
Code:
<NamedVolcanoes>
<Row NamedVolcanoType="NAMED_LR_ARENAL_VOLCANO" Name="LOC_NAMED_LR_ARENAL_VOLCANO_NAME"/>
</NamedVolcanoes>
<NamedVolcanoCivilizations>
<Row NamedVolcanoType="NAMED_LR_ARENAL_VOLCANO" CivilizationType="CIVILIZATION_LR_CIV"/>
</NamedVolcanoCivilizations>
And in another file:
Code:
<LocalizedText>
<Row Tag="LOC_NAMED_LR_ARENAL_VOLCANO_NAME" Language="en_US">
<Text>Volcán Arenal</Text>
</Row>
</LocalizedText>
I tried to check the localization database but I couldn't find neither the river nor the volcano, which I think make everything more weird.
Thanks a lot for any help