Novicenoble
Prince
Is there any easy way to modify the CivWBSave files? Do you manually change numbers when you add new civ into it?
There definitely is. Something about civ and team IDs does not line up.Can you give me a hint/idea/whatever something like that about this kind of problem? This error occurred when I launched 1700AD scenario with modified files. I guess there might be some problems in the WBsave file, but cannot sure about it.
Can you give me a hint/idea/whatever something like that about this kind of problem? This error occurred when I launched 1700AD scenario with modified files. I guess there might be some problems in the WBsave file, but cannot sure about it.
Spoiler :
![]()
![]()
ReligionTypes CvGame::getVoteSourceReligion(VoteSourceTypes eVoteSource) const
{
stdext::hash_map<VoteSourceTypes, ReligionTypes>::const_iterator it;
it = m_mapVoteSourceReligions.find(eVoteSource);
if (it == m_mapVoteSourceReligions.end())
{
return NO_RELIGION;
}
return it->second;
}
bool CvGame::isTeamVoteEligible(TeamTypes eTeam, VoteSourceTypes eVoteSource) const
{
CvTeam& kTeam = GET_TEAM(eTeam);
//Rhye - start
if (eTeam == INDEPENDENT || eTeam == INDEPENDENT2 || eTeam == NATIVE || eTeam == CELTIA || eTeam == SELJUKS)
{
return false;
}
//Rhye - end