Merge pull request #599 from ninjatao/wonder_priority
wonder building priority.
This commit is contained in:
commit
a3542597ae
1 changed files with 2 additions and 2 deletions
|
@ -142,7 +142,7 @@ class Automation {
|
|||
val citiesBuildingWonders = cityInfo.civInfo.cities
|
||||
.count { it.cityConstructions.isBuildingWonder() }
|
||||
val wonder = buildableWonders.getRandom()
|
||||
relativeCostEffectiveness.add(ConstructionChoice(wonder.name,3f / (citiesBuildingWonders + 1)))
|
||||
relativeCostEffectiveness.add(ConstructionChoice(wonder.name,5f / (citiesBuildingWonders + 1)))
|
||||
}
|
||||
|
||||
//other buildings
|
||||
|
@ -158,7 +158,7 @@ class Automation {
|
|||
|
||||
//Work boat
|
||||
if (needWorkboat) {
|
||||
relativeCostEffectiveness.add(ConstructionChoice("Work Boats",1.5f))
|
||||
relativeCostEffectiveness.add(ConstructionChoice("Work Boats",0.6f))
|
||||
}
|
||||
|
||||
//Army
|
||||
|
|
Loading…
Reference in a new issue