Craig_Sutter
Deity
I'm reposting this from a thread in the modders guide:
Continued from: http://forums.civfanatics.com/showthread.php?t=385009&page=24
As a first step in the mod I am working on, I wish to move astronomy to the Medieval Era from Renaissance.
It is not working... I've gotten XML files from other mods to when copied to my mod, so I know how to do that... I checked true for Importing to VFS and all the file properties show up as they should. The logs are normal with no errors that are not inherent in the game.
Have I done the coding wrong? If someone could take a quick look.
Oh, and I tested this by giving one of my on map civs all the medieval tech... astronomy does not show up as researched.
Thank-You
Continued from: http://forums.civfanatics.com/showthread.php?t=385009&page=24
As a first step in the mod I am working on, I wish to move astronomy to the Medieval Era from Renaissance.
It is not working... I've gotten XML files from other mods to when copied to my mod, so I know how to do that... I checked true for Importing to VFS and all the file properties show up as they should. The logs are normal with no errors that are not inherent in the game.
Have I done the coding wrong? If someone could take a quick look.
Oh, and I tested this by giving one of my on map civs all the medieval tech... astronomy does not show up as researched.
Code:
<?xml version="1.0" encoding="utf-8"?>
<!-- Created by ModBuddy on 6/3/2012 5:53:49 PM -->
<GameData>
<Technologies>
<Update>
<Set Era="ERA_MEDIEVAL"/>
<Where Type="TECH_ASTRONOMY"/>
</Update>
</Technologies>
</GameData>
Thank-You