Chalid
Black Dragon
Okay that is a very simple modification that reduces the number of tiles gained by each Culture expansion.
Its only one line of code to change so i will not attach a file. (Especially as i have some other Changes in this file as well). If someone has a "clean" CvCity.cpp and could post the modified one i would be grateful.
Modified is in CvCity.cpp the function cultureDistance.
The modified Code of the function:
And the effect:
Its only one line of code to change so i will not attach a file. (Especially as i have some other Changes in this file as well). If someone has a "clean" CvCity.cpp and could post the modified one i would be grateful.
Modified is in CvCity.cpp the function cultureDistance.
The modified Code of the function:
Code:
int CvCity::cultureDistance(int iDX, int iDY)
{
/*Begin Chalid SlowCulture*/
return max(1, abs(iDX)+abs(iDY)+max(abs(iDX),abs(iDY))-1);
/*Old Code
return max(1, plotDistance(0, 0, iDX, iDY));
*/
/*End Chalid SlowCulture*/
}
And the effect: