Modify LocalizedText after the April update

IvanGlez

Chieftain
Joined
Nov 29, 2021
Messages
2
Location
Spain
Hi! I've only recently got into the world of Civilizations mods and I have a problem that I haven't been able to fix yet. I noticed that after the April update I cannot update the texts that have been changed in the patch. For example, I am making changes to Spain, and the only thing I can successfully change is the mission description, the only part of Spain that has not been touched by the April changes.
When I try to use the 'INSERT OR REPLACE' the text does not even appear in the game.
Does anyone have any ideas on this issue?
 
I came across this issue I think when editing Portugal. You must use replace:

Example:
Code:
<Replace Tag="LOC_UNIT_PORTUGUESE_NAU_DESCRIPTION" >
            <Text>Portuguese unique naval melee unit that replaces the Caravel. Starts with 1 free Promotion and is less maintenance. Has two charges to build Feitorias. Also transfers its Movement to escorted units.</Text>
</Replace>

But I think you have to add LoadOrder (for instance LoadOrder 5 to run later) Property in your modbuddy properties or in modinfo file.
 
I came across this issue I think when editing Portugal. You must use replace:

Example:
Code:
<Replace Tag="LOC_UNIT_PORTUGUESE_NAU_DESCRIPTION" >
            <Text>Portuguese unique naval melee unit that replaces the Caravel. Starts with 1 free Promotion and is less maintenance. Has two charges to build Feitorias. Also transfers its Movement to escorted units.</Text>
</Replace>

But I think you have to add LoadOrder (for instance LoadOrder 5 to run later) Property in your modbuddy properties or in modinfo file.
I have tried, but the game keeps ignoring my changes. It seems that the game inserts the April changes at the end of the game or something like that.
I have tried to change the chateau, another improvement that has been modified in the update, and I am not able to change its name or description either.
 
Back
Top Bottom