lumpthing
generic lump
I know I can use the code below to force all civs to start on the biggest continent, but is there a way to make this rule apply to only certain civs. For example, to say that the English, Dutch and Spanish must start on the biggest continent, but all the other civs can start anywhere?
Code:
def isValidOldW(playerID, x, y):
map = CyMap()
if (map.plot(x, y).getArea() != map.findBiggestArea(False).getID()):
return False
return True
def findStartingPlot(argsList):
[playerID] = argsList
return CvMapGeneratorUtil.findStartingPlot(playerID, isValidOldW)