Dancing Hoskuld
Deity
Hello everyone,
I play the latest SVN version and I have noticed that for some time in the custom game there is no option, which allows to reset draws mechanism upon reloading.
Welcome to CFC and C2C.
Yes someone turned off the display of that option. The only disadvantage of having it turned off is that we modders will not be able to use any of your saves to find bugs.
If you are using the latest beta (SVN) version then you can go into WorldBuilder and edit the option and turn it on. Otherwise you may be stuck.
For future games you can edit the CIV4GameOptionInfos.XML file in Assets/XML/GameInfo, find GAMEOPTION_NEW_RANDOM_SEED and change
Code:
<GameOptionInfo>
<Type>GAMEOPTION_NEW_RANDOM_SEED</Type>
<Description>TXT_KEY_GAME_OPTION_NEW_RANDOM_SEED</Description>
<Help>TXT_KEY_GAME_OPTION_NEW_RANDOM_SEED_HELP</Help>
<bDefault>0</bDefault>
<bVisible>0</bVisible>
</GameOptionInfo>
Code:
<GameOptionInfo>
<Type>GAMEOPTION_NEW_RANDOM_SEED</Type>
<Description>TXT_KEY_GAME_OPTION_NEW_RANDOM_SEED</Description>
<Help>TXT_KEY_GAME_OPTION_NEW_RANDOM_SEED_HELP</Help>
<bDefault>1</bDefault>
<bVisible>1</bVisible>
</GameOptionInfo>