Some guys know a little bit more I guess
however, I would not expect such people to be able to communicate such precious knowledge to the rest of the community until after certain announcements have been made.

) would consider it a "feature", not a "bug". Even if it was an unintended feature.
) would consider it a "feature", not a "bug". Even if it was an unintended feature.int CvUnit::maxXPValue() const
{
int iMaxValue;
iMaxValue = MAX_INT;
if (isAnimal())
{
iMaxValue = min(iMaxValue, GC.getDefineINT("ANIMAL_MAX_XP_VALUE"));
}
if (isBarbarian())
{
iMaxValue = min(iMaxValue, GC.getDefineINT("BARBARIAN_MAX_XP_VALUE"));
}
return iMaxValue;
}
Comment